public abstract class GridNearCacheAdapter<K,V> extends GridDistributedCacheAdapter<K,V>
GridCacheAdapter.AsyncOp<T>, GridCacheAdapter.CacheExpiryPolicy, GridCacheAdapter.FutureHolder, GridCacheAdapter.UpdateGetTimeStatClosure<T>, GridCacheAdapter.UpdatePutAndGetTimeStatClosure<T>, GridCacheAdapter.UpdatePutTimeStatClosure<T>, GridCacheAdapter.UpdateRemoveTimeStatClosure<T>, GridCacheAdapter.UpdateTimeStatClosure<T>| Modifier | Constructor and Description |
|---|---|
protected |
GridNearCacheAdapter()
Empty constructor required for
Externalizable. |
protected |
GridNearCacheAdapter(GridCacheContext<K,V> ctx) |
| Modifier and Type | Method and Description |
|---|---|
void |
clearLocally0(Collection<? extends K> keys,
IgnitePredicate<javax.cache.Cache.Entry<K,V>>[] filter) |
boolean |
clearLocally0(K key,
IgnitePredicate<javax.cache.Cache.Entry<K,V>>[] filter) |
boolean |
compact(K key,
IgnitePredicate<javax.cache.Cache.Entry<K,V>>[] filter) |
abstract GridDhtCacheAdapter<K,V> |
dht() |
javax.cache.Cache.Entry<K,V> |
entry(K key)
Gets entry from cache with the specified key.
|
GridCacheEntryEx<K,V> |
entryEx(K key,
boolean touch) |
GridCacheEntryEx<K,V> |
entryEx(K key,
long topVer) |
GridNearCacheEntry<K,V> |
entryExx(K key,
long topVer) |
Set<javax.cache.Cache.Entry<K,V>> |
entrySet(IgnitePredicate<javax.cache.Cache.Entry<K,V>>... filter) |
Set<javax.cache.Cache.Entry<K,V>> |
entrySet(int part)
Gets set containing cache entries that belong to provided partition or
null
if partition is not found locally. |
boolean |
evict(K key,
IgnitePredicate<javax.cache.Cache.Entry<K,V>>[] filter) |
void |
evictAll(Collection<? extends K> keys,
IgnitePredicate<javax.cache.Cache.Entry<K,V>>[] filter) |
boolean |
evictNearOnly(K key,
IgnitePredicate<javax.cache.Cache.Entry<K,V>>[] filter) |
long |
igfsDataSpaceMax()
Get maximum space available for IGFS.
|
long |
igfsDataSpaceUsed()
Get current amount of used IGFS space in bytes.
|
protected void |
init()
Post constructor initialization for subclasses.
|
boolean |
isAllLockedNearOnly(Iterable<? extends K> keys) |
boolean |
isIgfsDataCache()
Checks whether this cache is IGFS data cache.
|
boolean |
isLocked(K key)
Checks if any node owns a lock for this key.
|
boolean |
isLockedNearOnly(K key) |
boolean |
isMongoDataCache()
Checks whether this cache is Mongo data cache.
|
boolean |
isMongoMetaCache()
Checks whether this cache is Mongo meta cache.
|
boolean |
isNear() |
Set<K> |
keySet(IgnitePredicate<javax.cache.Cache.Entry<K,V>>[] filter)
Set of keys cached on this node.
|
IgniteInternalFuture<Map<K,V>> |
loadAsync(IgniteInternalTx tx,
Collection<? extends K> keys,
boolean reload,
boolean forcePrimary,
UUID subjId,
String taskName,
boolean deserializePortable,
javax.cache.expiry.ExpiryPolicy expiryPlc,
boolean skipVal) |
void |
loadCache(IgniteBiPredicate<K,V> p,
long ttl,
Object[] args)
Delegates to
CacheStore.loadCache(org.apache.ignite.lang.IgniteBiInClosure,Object...) method
to load state from the underlying persistent storage. |
IgniteInternalFuture<?> |
loadCacheAsync(IgniteBiPredicate<K,V> p,
long ttl,
Object[] args)
Asynchronously delegates to
CacheStore.loadCache(org.apache.ignite.lang.IgniteBiInClosure, Object...) method
to reload state from the underlying persistent storage. |
void |
localLoad(Collection<? extends K> keys,
javax.cache.expiry.ExpiryPolicy plc) |
Set<javax.cache.Cache.Entry<K,V>> |
nearEntries() |
Iterator<javax.cache.Cache.Entry<K,V>> |
nearEntriesIterator() |
Set<K> |
nearKeySet(IgnitePredicate<javax.cache.Cache.Entry<K,V>> filter) |
int |
nearSize()
Gets size of near cache key set.
|
long |
offHeapAllocatedSize()
Gets memory size allocated in off-heap.
|
long |
offHeapEntriesCount()
Gets number of cache entries stored in off-heap memory.
|
Iterator<Map.Entry<K,V>> |
offHeapIterator()
Gets iterator over keys and values belonging to this cache off-heap memory on local node.
|
void |
onIgfsDataSizeChanged(long delta)
Callback invoked when data is added to IGFS cache.
|
V |
peek(K key,
Collection<GridCachePeekMode> modes)
Peeks at cached value using optional set of peek modes.
|
V |
peek(K key,
IgnitePredicate<javax.cache.Cache.Entry<K,V>> filter) |
Map<K,V> |
peekAll(Collection<? extends K> keys,
IgnitePredicate<javax.cache.Cache.Entry<K,V>>... filter) |
GridNearCacheEntry<K,V> |
peekExx(K key) |
V |
peekNearOnly(K key)
Peeks only near cache without looking into DHT cache.
|
GridCachePreloader<K,V> |
preloader() |
Set<javax.cache.Cache.Entry<K,V>> |
primaryEntrySet(IgnitePredicate<javax.cache.Cache.Entry<K,V>>... filter) |
Set<K> |
primaryKeySet(IgnitePredicate<javax.cache.Cache.Entry<K,V>>... filter) |
int |
primarySize()
Gets the number of all primary entries cached on this node.
|
Collection<V> |
primaryValues(IgnitePredicate<javax.cache.Cache.Entry<K,V>>... filter) |
protected void |
processGetResponse(UUID nodeId,
GridNearGetResponse<K,V> res) |
V |
promote(K key)
This method promotes cache entry by given key, if any, from offheap or swap storage
into memory.
|
V |
promote(K key,
boolean deserializePortable) |
void |
promoteAll(Collection<? extends K> keys)
This method unswaps cache entries by given keys, if any, from swap storage
into memory.
|
IgniteInternalFuture<Object> |
readThroughAllAsync(Collection<? extends K> keys,
boolean reload,
boolean skipVals,
IgniteInternalTx<K,V> tx,
UUID subjId,
String taskName,
IgniteBiInClosure<K,V> vis) |
V |
reload(K key)
Reloads a single key from persistent storage.
|
void |
reloadAll()
Reloads all currently cached keys form persistent storage.
|
void |
reloadAll(Collection<? extends K> keys)
Reloads specified entries from underlying persistent storage.
|
IgniteInternalFuture<?> |
reloadAllAsync()
Asynchronously reloads all specified entries from underlying
persistent storage.
|
IgniteInternalFuture<?> |
reloadAllAsync(Collection<? extends K> keys)
Asynchronously reloads all specified entries from underlying
persistent storage.
|
int |
size()
Gets the number of all entries cached on this node.
|
List<GridCacheClearAllRunnable<K,V>> |
splitClearLocally()
Split clearLocally all task into multiple runnables.
|
Iterator<Map.Entry<K,V>> |
swapIterator()
Gets iterator over keys and values belonging to this cache swap space on local node.
|
long |
swapKeys()
Gets number of swap entries (keys).
|
long |
swapSize()
Gets size in bytes for swap space.
|
String |
toString() |
Collection<V> |
values(IgnitePredicate<javax.cache.Cache.Entry<K,V>>... filter) |
lockAllAsync, lockAllAsync, removeAll, removeAllAsync, removeVersionedEntry, txLockAsyncaffinity, allEntries, asyncOp, asyncOpAcquire, asyncOpRelease, awaitLastFut, cache, checkJta, clear, clear, clearAsync, clearLocally, clearLocally, clearLocally, commitTxAsync, compact, compactAll, compactAll, configuration, containsKey, containsKeyAsync, containsKeys, containsKeysAsync, containsValue, context, entries, entryEx, entryExSafe, entrySet, entrySet, entrySetx, evict, evictAll, evictAll, expiry, expiryPolicy, flags, flagsOff, flagsOn, forAll, forceRepartition, forEach, forSubjectId, get, get, get, getAll, getAll, getAllAsync, getAllAsync, getAllAsync, getAllAsync, getAllOutTx, getAllOutTxAsync, getAsync, getAsync, getForcePrimary, getForcePrimaryAsync, globalPrimarySize, globalSize, gridProjection, igniteIterator, invoke, invokeAll, invokeAll, invokeAllAsync, invokeAllAsync, invokeAsync, isColocated, isDht, isDhtAtomic, isEmpty, isLocal, isLockedByThread, iterator, iterator, keepPortable, keepPortable0, keySet, loadAll, localEntries, localPeek, localSize, lock, lockAll, lockAsync, log, map, metrics, metrics0, mxBean, name, onDeferredDelete, onKernalStart, onKernalStop, onUndeploy, overflowSize, peek, peek0, peek0, peek0, peekAll0, peekAll0, peekEx, predicate, primaryEntrySet, primaryEntrySetx, primaryKeySet, primaryValues, printMemoryStats, projection, projection, projection, put, put, putAll, putAllAsync, putAllDr, putAllDrAsync, putAsync, putAsync, putIfAbsent, putIfAbsentAsync, putx, putx, putxAsync, putxAsync, putxIfAbsent, putxIfAbsentAsync, queries, randomEntry, readExternal, readResolve, reloadAll, reloadAllAsync, reloadAsync, remove, remove, remove, removeAll, removeAllAsync, removeAllAsync, removeAllDr, removeAllDrAsync, removeAsync, removeAsync, removeAsync, removeEntry, removeIfObsolete, removex, removex, removex, removexAsync, removexAsync, removexAsync, replace, replace, replaceAsync, replaceAsync, replacex, replacex, replacexAsync, replacexAsync, saveFuture, size, sizeAsync, start, startInfo, stop, stopInfo, toMap, tx, txStart, txStart, txStart, txStartEx, txSynchronizations, txSynchronize, txUnsynchronize, unlock, validateCacheKey, validateCacheKeys, values, withExpiryPolicy, writeExternalclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitunlockAllprotected GridNearCacheAdapter()
Externalizable.protected GridNearCacheAdapter(GridCacheContext<K,V> ctx)
ctx - Context.protected void init()
init in class GridCacheAdapter<K,V>public abstract GridDhtCacheAdapter<K,V> dht()
public boolean isNear()
isNear in class GridCacheAdapter<K,V>True if this is near cache.public GridCachePreloader<K,V> preloader()
preloader in class GridCacheAdapter<K,V>public GridCacheEntryEx<K,V> entryEx(K key, boolean touch)
entryEx in class GridCacheAdapter<K,V>key - Entry key.touch - Whether created entry should be touched.null).public GridCacheEntryEx<K,V> entryEx(K key, long topVer)
entryEx in class GridCacheAdapter<K,V>key - Entry key.topVer - Topology version.null).public GridNearCacheEntry<K,V> entryExx(K key, long topVer)
key - Key.topVer - Topology version.@Nullable public GridNearCacheEntry<K,V> peekExx(K key)
key - Key.public boolean isLocked(K key)
This is a local in-VM operation and does not involve any network trips or access to persistent storage in any way.
isLocked in interface CacheProjection<K,V>isLocked in class GridCacheAdapter<K,V>key - Key to check.True if lock is owned by some node.public boolean isLockedNearOnly(K key)
key - Key.public boolean isAllLockedNearOnly(Iterable<? extends K> keys)
keys - Keys.public IgniteInternalFuture<Object> readThroughAllAsync(Collection<? extends K> keys, boolean reload, boolean skipVals, IgniteInternalTx<K,V> tx, @Nullable UUID subjId, String taskName, IgniteBiInClosure<K,V> vis)
readThroughAllAsync in class GridCacheAdapter<K,V>keys - Keys.reload - Reload flag.tx - Transaction.subjId - Subject ID.taskName - Task name.vis - Visitor.public void reloadAll(@Nullable Collection<? extends K> keys) throws IgniteCheckedException
reloadAll in interface CacheProjection<K,V>reloadAll in class GridCacheAdapter<K,V>keys - Keys to reload.IgniteCheckedException - if reloading failed.public IgniteInternalFuture<?> reloadAllAsync(@Nullable Collection<? extends K> keys)
reloadAllAsync in interface CacheProjection<K,V>reloadAllAsync in class GridCacheAdapter<K,V>keys - Keys.public V reload(K key) throws IgniteCheckedException
CacheStore#load(Transaction, Object)
method.
reload in interface CacheProjection<K,V>reload in class GridCacheAdapter<K,V>key - Key.IgniteCheckedException - If failed.public void reloadAll()
throws IgniteCheckedException
reloadAll in interface CacheProjection<K,V>reloadAll in class GridCacheAdapter<K,V>IgniteCheckedException - If reloading failed.public IgniteInternalFuture<?> reloadAllAsync()
reloadAllAsync in interface CacheProjection<K,V>reloadAllAsync in class GridCacheAdapter<K,V>reload completes.public IgniteInternalFuture<Map<K,V>> loadAsync(@Nullable IgniteInternalTx tx, @Nullable Collection<? extends K> keys, boolean reload, boolean forcePrimary, @Nullable UUID subjId, String taskName, boolean deserializePortable, @Nullable javax.cache.expiry.ExpiryPolicy expiryPlc, boolean skipVal)
tx - Transaction.keys - Keys to load.reload - Reload flag.forcePrimary - Force primary flag.subjId - Subject ID.taskName - Task name.deserializePortable - Deserialize portable flag.expiryPlc - Expiry policy.public void loadCache(IgniteBiPredicate<K,V> p, long ttl, Object[] args) throws IgniteCheckedException
CacheStore.loadCache(org.apache.ignite.lang.IgniteBiInClosure,Object...) method
to load state from the underlying persistent storage. The loaded values
will then be given to the optionally passed in predicate, and, if the predicate returns
true, will be stored in cache. If predicate is null, then
all loaded values will be stored in cache.
Note that this method does not receive keys as a parameter, so it is up to
CacheStore implementation to provide all the data to be loaded.
This method is not transactional and may end up loading a stale value into cache if another thread has updated the value immediately after it has been loaded. It is mostly useful when pre-loading the cache from underlying data store before start, or for read-only caches.
loadCache in interface GridCache<K,V>loadCache in class GridCacheAdapter<K,V>p - Optional predicate (may be null). If provided, will be used to
filter values to be put into cache.ttl - Time to live for loaded entries (0 for infinity).args - Optional user arguments to be passed into
CacheStore.loadCache(org.apache.ignite.lang.IgniteBiInClosure, Object...) method.IgniteCheckedException - If loading failed.public void localLoad(Collection<? extends K> keys, javax.cache.expiry.ExpiryPolicy plc) throws IgniteCheckedException
localLoad in class GridCacheAdapter<K,V>keys - Keys to load.plc - Optional expiry policy.IgniteCheckedException - If failed.public IgniteInternalFuture<?> loadCacheAsync(IgniteBiPredicate<K,V> p, long ttl, Object[] args)
CacheStore.loadCache(org.apache.ignite.lang.IgniteBiInClosure, Object...) method
to reload state from the underlying persistent storage. The reloaded values
will then be given to the optionally passed in predicate, and if the predicate returns
true, will be stored in cache. If predicate is null, then
all reloaded values will be stored in cache.
Note that this method does not receive keys as a parameter, so it is up to
CacheStore implementation to provide all the data to be loaded.
This method is not transactional and may end up loading a stale value into cache if another thread has updated the value immediately after it has been loaded. It is mostly useful when pre-loading the cache from underlying data store before start, or for read-only caches.
loadCacheAsync in interface GridCache<K,V>loadCacheAsync in class GridCacheAdapter<K,V>p - Optional predicate (may be null). If provided, will be used to
filter values to be put into cache.ttl - Time to live for loaded entries (0 for infinity).args - Optional user arguments to be passed into
CacheStore.loadCache(org.apache.ignite.lang.IgniteBiInClosure,Object...) method.protected void processGetResponse(UUID nodeId, GridNearGetResponse<K,V> res)
nodeId - Sender ID.res - Response.public int size()
GridCache projection. It is essentially the
size of cache key set and is semantically identical to {Cache.keySet().size().
NOTE: this operation is not distributed and returns only the number of entries cached on this node.
size in interface CacheProjection<K,V>size in class GridCacheAdapter<K,V>public int primarySize()
CacheMode.LOCAL non-distributed
cache mode, this method is identical to CacheProjection.size().
For CacheMode.PARTITIONED and CacheMode.REPLICATED modes, this method will
return number of primary entries cached on this node (excluding any backups). The complexity of
this method is O(P), where P is the total number of partitions.
NOTE: this operation is not distributed and returns only the number of primary entries cached on this node.
primarySize in interface CacheProjection<K,V>primarySize in class GridCacheAdapter<K,V>public int nearSize()
Note that for LOCAL non-distributed caches this method will always return 0
nearSize in interface CacheProjection<K,V>nearSize in class GridCacheAdapter<K,V>0 if cache is not CacheMode.PARTITIONED.public Set<javax.cache.Cache.Entry<K,V>> entrySet(@Nullable IgnitePredicate<javax.cache.Cache.Entry<K,V>>... filter)
entrySet in class GridCacheAdapter<K,V>filter - Filters to evaluate.public Set<javax.cache.Cache.Entry<K,V>> entrySet(int part)
null
if partition is not found locally.
NOTE: this operation is not distributed and returns only the entries cached on this node.
entrySet in interface CacheProjection<K,V>entrySet in class GridCacheAdapter<K,V>part - Partition.null if partition is
not found locally.public Set<javax.cache.Cache.Entry<K,V>> primaryEntrySet(@Nullable IgnitePredicate<javax.cache.Cache.Entry<K,V>>... filter)
primaryEntrySet in class GridCacheAdapter<K,V>filter - Filters to evaluate.public Set<K> keySet(@Nullable IgnitePredicate<javax.cache.Cache.Entry<K,V>>[] filter)
Iterator over this set will not fail if set was concurrently updated by another thread. This means that iterator may or may not return latest keys depending on whether they were added before or after current iterator position.
NOTE: this operation is not distributed and returns only the keys cached on this node.
keySet in interface CacheProjection<K,V>keySet in class GridCacheAdapter<K,V>filter - Filters to evaluate.public Set<K> nearKeySet(@Nullable IgnitePredicate<javax.cache.Cache.Entry<K,V>> filter)
filter - Entry filter.public Set<K> primaryKeySet(@Nullable IgnitePredicate<javax.cache.Cache.Entry<K,V>>... filter)
primaryKeySet in class GridCacheAdapter<K,V>filter - Primary key set.public Collection<V> values(IgnitePredicate<javax.cache.Cache.Entry<K,V>>... filter)
values in class GridCacheAdapter<K,V>public Collection<V> primaryValues(@Nullable IgnitePredicate<javax.cache.Cache.Entry<K,V>>... filter)
primaryValues in class GridCacheAdapter<K,V>filter - Filters to evaluate.public boolean evict(K key, @Nullable IgnitePredicate<javax.cache.Cache.Entry<K,V>>[] filter)
evict in class GridCacheAdapter<K,V>key - Key.filter - Filters to evaluate.True if evicted.public boolean evictNearOnly(K key, @Nullable IgnitePredicate<javax.cache.Cache.Entry<K,V>>[] filter)
key - Key to evict.filter - Optional filter.True if evicted.public void evictAll(Collection<? extends K> keys, @Nullable IgnitePredicate<javax.cache.Cache.Entry<K,V>>[] filter)
evictAll in class GridCacheAdapter<K,V>keys - Keys.filter - Filters to evaluate.public boolean compact(K key, @Nullable IgnitePredicate<javax.cache.Cache.Entry<K,V>>[] filter) throws IgniteCheckedException
compact in class GridCacheAdapter<K,V>key - Key.filter - Filters to evaluate.True if compacted.IgniteCheckedException - If failed.public javax.cache.Cache.Entry<K,V> entry(K key)
Note that this method can return null if projection is configured as
pre-filtered and entry key and value don't pass key-value filter of the projection.
entry in interface CacheProjection<K,V>entry in class GridCacheAdapter<K,V>key - Entry key.null if projection pre-filtering was not passed.@Nullable public V peekNearOnly(K key)
key - Key.public V peek(K key, @Nullable IgnitePredicate<javax.cache.Cache.Entry<K,V>> filter)
peek in class GridCacheAdapter<K,V>key - Key.filter - Filter to evaluate.public V peek(K key, @Nullable Collection<GridCachePeekMode> modes) throws IgniteCheckedException
non-null value is found, it will be immediately returned.
Note that if modes are not provided this method works exactly the same way as
CacheProjection.peek(Object), implicitly using GridCachePeekMode.SMART mode.
peek in interface CacheProjection<K,V>peek in class GridCacheAdapter<K,V>key - Entry key.modes - Optional set of peek modes.IgniteCheckedException - If peek operation failed.public Map<K,V> peekAll(@Nullable Collection<? extends K> keys, @Nullable IgnitePredicate<javax.cache.Cache.Entry<K,V>>... filter)
peekAll in class GridCacheAdapter<K,V>public boolean clearLocally0(K key, @Nullable IgnitePredicate<javax.cache.Cache.Entry<K,V>>[] filter)
clearLocally0 in class GridCacheAdapter<K,V>key - Key.filter - Filters to evaluate.True if cleared.public void clearLocally0(Collection<? extends K> keys, @Nullable IgnitePredicate<javax.cache.Cache.Entry<K,V>>[] filter)
clearLocally0 in class GridCacheAdapter<K,V>keys - Keys.filter - Filters to evaluate.public V promote(K key, boolean deserializePortable) throws IgniteCheckedException
promote in class GridCacheAdapter<K,V>key - Key.deserializePortable - Deserialize portable flag.IgniteCheckedException - If failed.public V promote(K key) throws IgniteCheckedException
CacheFlag.SKIP_SWAP, CacheFlag.READ.promote in interface CacheProjection<K,V>promote in class GridCacheAdapter<K,V>key - Key to promote entry for.null for non-existing key.IgniteCheckedException - If promote failed.public void promoteAll(@Nullable Collection<? extends K> keys) throws IgniteCheckedException
CacheFlag.SKIP_SWAP, CacheFlag.READ.promoteAll in interface CacheProjection<K,V>promoteAll in class GridCacheAdapter<K,V>keys - Keys to promote entries for.IgniteCheckedException - If promote failed.public Iterator<Map.Entry<K,V>> swapIterator() throws IgniteCheckedException
Returned iterator supports remove operation which delegates to
CacheProjection.removex(Object, org.apache.ignite.lang.IgnitePredicate[]) method.
CacheFlag.SKIP_SWAP.swapIterator in interface GridCache<K,V>swapIterator in class GridCacheAdapter<K,V>IgniteCheckedException - If failed.CacheProjection.promote(Object)public Iterator<Map.Entry<K,V>> offHeapIterator() throws IgniteCheckedException
Returned iterator supports remove operation which delegates to
CacheProjection.removex(Object, org.apache.ignite.lang.IgnitePredicate[]) method.
offHeapIterator in interface GridCache<K,V>offHeapIterator in class GridCacheAdapter<K,V>IgniteCheckedException - If failed.public long offHeapEntriesCount()
offHeapEntriesCount in interface GridCache<K,V>offHeapEntriesCount in class GridCacheAdapter<K,V>public long offHeapAllocatedSize()
offHeapAllocatedSize in interface GridCache<K,V>offHeapAllocatedSize in class GridCacheAdapter<K,V>public long swapSize()
throws IgniteCheckedException
swapSize in interface GridCache<K,V>swapSize in class GridCacheAdapter<K,V>IgniteCheckedException - If failed.public long swapKeys()
throws IgniteCheckedException
swapKeys in interface GridCache<K,V>swapKeys in class GridCacheAdapter<K,V>IgniteCheckedException - If failed.public boolean isIgfsDataCache()
isIgfsDataCache in interface GridCacheProjectionEx<K,V>isIgfsDataCache in class GridCacheAdapter<K,V>True in case this cache is IGFS data cache.public long igfsDataSpaceUsed()
igfsDataSpaceUsed in interface GridCacheProjectionEx<K,V>igfsDataSpaceUsed in class GridCacheAdapter<K,V>public long igfsDataSpaceMax()
igfsDataSpaceMax in interface GridCacheProjectionEx<K,V>igfsDataSpaceMax in class GridCacheAdapter<K,V>public void onIgfsDataSizeChanged(long delta)
onIgfsDataSizeChanged in class GridCacheAdapter<K,V>delta - Size delta.public boolean isMongoDataCache()
isMongoDataCache in interface GridCacheProjectionEx<K,V>isMongoDataCache in class GridCacheAdapter<K,V>True if this cache is mongo data cache.public boolean isMongoMetaCache()
isMongoMetaCache in interface GridCacheProjectionEx<K,V>isMongoMetaCache in class GridCacheAdapter<K,V>True if this cache is mongo meta cache.public List<GridCacheClearAllRunnable<K,V>> splitClearLocally()
splitClearLocally in class GridCacheAdapter<K,V>public Iterator<javax.cache.Cache.Entry<K,V>> nearEntriesIterator()
public String toString()
toString in class GridDistributedCacheAdapter<K,V>
Follow @ApacheIgnite
Ignite Fabric : ver. 1.0.0-RC1 Release Date : February 17 2015