Interface MemcacheService (2.0.0)

public interface MemcacheService extends BaseMemcacheService

The Java API for the App Engine Memcache service. This offers a fast distributed cache for commonly-used data. The cache is limited both in duration and also in total space, so objects stored in it may be discarded at any time.

Note that null is a legal value to store in the cache, or to use as a cache key. Although the API is written for Objects, both keys and values should be Serializable, although future versions may someday accept specific types of non-Serializable Objects.

The values returned from this API are mutable copies from the cache; altering them has no effect upon the cached value itself until assigned with one of the put methods. Likewise, the methods returning collections return mutable collections, but changes do not affect the cache.

Methods that operate on single entries, including #increment, are atomic, while batch methods such as #getAll, #putAll, and #deleteAll do not provide atomicity. Arbitrary operations on single entries can be performed atomically by using #putIfUntouched in combination with #getIdentifiable.

Increment has a number of caveats to its use; please consult the method documentation.

An ErrorHandler configures how errors are treated. The default error handler is an instance of LogAndContinueErrorHandler. In most cases this will log the underlying error condition and emulate cache-miss behavior instead of throwing an error to the calling code. For example, it returns null from #get(Object).

A less permissive alternative is StrictErrorHandler, which will instead throw a MemcacheServiceException to expose any errors for application code to resolve.

To guarantee that all MemcacheServiceException are directed to the error handler use a ConsistentErrorHandler such as ErrorHandlers#getConsistentLogAndContinue(Level) or ErrorHandlers#getStrict().

Implements

BaseMemcacheService

Methods

<T>deleteAll(Collection<T> keys)

public abstract Set<T> <T>deleteAll(Collection<T> keys)

Batch version of #delete(Object).

Parameter
NameDescription
keysCollection<T>

a collection of keys for entries to delete

Returns
TypeDescription
Set<T>

the Set of keys deleted. Any keys in keys but not in the returned set were not found in the cache. The iteration order of the returned set matches the iteration order of the provided keys.

<T>deleteAll(Collection<T> keys, long millisNoReAdd)

public abstract Set<T> <T>deleteAll(Collection<T> keys, long millisNoReAdd)

Batch version of #delete(Object, long).

Parameters
NameDescription
keysCollection<T>

a collection of keys for entries to delete

millisNoReAddlong

time during which calls to put using SetPolicy#ADD_ONLY_IF_NOT_PRESENT should be denied.

Returns
TypeDescription
Set<T>

the Set of keys deleted. Any keys in keys but not in the returned set were not found in the cache. The iteration order of the returned set matches the iteration order of the provided keys.

<T>getAll(Collection<T> keys)

public abstract Map<T,Object> <T>getAll(Collection<T> keys)

Performs a get of multiple keys at once. This is more efficient than multiple separate calls to #get(Object), and allows a single call to both test for #contains(Object) and also fetch the value, because the return will not include mappings for keys not found.

If an error deserializing the value occurs, this passes an InvalidValueException to the service's ErrorHandler. If a service error occurs, this passes a MemcacheServiceException. See BaseMemcacheService#setErrorHandler(ErrorHandler).

Parameter
NameDescription
keysCollection<T>

a collection of keys for which values should be retrieved

Returns
TypeDescription
Map<T,Object>

a mapping from keys to values of any entries found. If a requested key is not found in the cache, the key will not be in the returned Map.

<T>getIdentifiables(Collection<T> keys)

public abstract Map<T,MemcacheService.IdentifiableValue> <T>getIdentifiables(Collection<T> keys)

Performs a getIdentifiable for multiple keys at once. This is more efficient than multiple separate calls to #getIdentifiable(Object).

If an error deserializing the value occurs, this passes an InvalidValueException to the service's ErrorHandler. If a service error occurs, this passes a MemcacheServiceException. See BaseMemcacheService#setErrorHandler(ErrorHandler).

Parameter
NameDescription
keysCollection<T>

a collection of keys for which values should be retrieved

Returns
TypeDescription
Map<T,IdentifiableValue>

a mapping from keys to values of any entries found. If a requested key is not found in the cache, the key will not be in the returned Map.

<T>getItemsForPeek(Collection<T> keys)

public default Map<T,MemcacheService.ItemForPeek> <T>getItemsForPeek(Collection<T> keys)

Performs a getItemForPeek for multiple keys at once. This is more efficient than multiple separate calls to #getItemForPeek(Object).

If an error deserializing the value occurs, this passes an InvalidValueException to the service's ErrorHandler. If a service error occurs, this passes a MemcacheServiceException. See BaseMemcacheService#setErrorHandler(ErrorHandler).

Parameter
NameDescription
keysCollection<T>

a collection of keys for which values should be retrieved

Returns
TypeDescription
Map<T,ItemForPeek>

a mapping from keys to ItemForPeek of any entries found. If a requested key is not found in the cache, the key will not be in the returned Map.

<T>incrementAll(Collection<T> keys, long delta)

public abstract Map<T,Long> <T>incrementAll(Collection<T> keys, long delta)

Like normal increment, but increments a batch of separate keys in parallel by the same delta. See Also: #increment(Object, long)

Parameters
NameDescription
keysCollection<T>
deltalong
Returns
TypeDescription
Map<T,Long>

mapping keys to their new values; values will be null if they could not be incremented or were not present in the cache

<T>incrementAll(Collection<T> keys, long delta, Long initialValue)

public abstract Map<T,Long> <T>incrementAll(Collection<T> keys, long delta, Long initialValue)

Like normal increment, but increments a batch of separate keys in parallel by the same delta and potentially sets a starting value. See Also: #increment(Object, long)

Parameters
NameDescription
keysCollection<T>
deltalong
initialValueLong

value to insert into the cache if the key is not present

Returns
TypeDescription
Map<T,Long>

mapping keys to their new values; values will be null if they could not be incremented for whatever reason

<T>incrementAll(Map<T,Long> offsets)

public abstract Map<T,Long> <T>incrementAll(Map<T,Long> offsets)

Like normal increment, but accepts a mapping of separate controllable offsets for each key individually. Good for incrementing by a sum and a count in parallel. See Also: #increment(Object, long)

Parameter
NameDescription
offsetsMap<T,Long>
Returns
TypeDescription
Map<T,Long>

mapping keys to their new values; values will be null if they could not be incremented for whatever reason

<T>incrementAll(Map<T,Long> offsets, Long initialValue)

public abstract Map<T,Long> <T>incrementAll(Map<T,Long> offsets, Long initialValue)

Like normal increment, but accepts a mapping of separate controllable offsets for each key individually. Good for incrementing by a sum and a count in parallel. Callers may also pass an initial value for the keys to take on if they are not already present in the cache. See Also: #increment(Object, long)

Parameters
NameDescription
offsetsMap<T,Long>
initialValueLong
Returns
TypeDescription
Map<T,Long>

mapping keys to their new values; values will be null if they could not be incremented for whatever reason

<T>putAll(Map<T,?> values, Expiration expires, MemcacheService.SetPolicy policy)

public abstract Set<T> <T>putAll(Map<T,?> values, Expiration expires, MemcacheService.SetPolicy policy)

A batch-processing variant of #put. This is more efficiently implemented by the service than multiple calls.

Parameters
NameDescription
valuesMap<T,?>

the key/value mappings to add to the cache

expiresExpiration

the expiration time for all values, or null for no time-based expiration.

policyMemcacheService.SetPolicy

what to do if the entry is or is not already present

Returns
TypeDescription
Set<T>

the set of keys for which entries were created. Keys in values may not be in the returned set because of the policy regarding pre-existing entries.

<T>putIfUntouched(Map<T,MemcacheService.CasValues> values)

public abstract Set<T> <T>putIfUntouched(Map<T,MemcacheService.CasValues> values)

Convenience shortcut, equivalent to <xref uid="com.google.appengine.api.memcache.MemcacheService.

Parameter
NameDescription
valuesMap<T,CasValues>

the key/values mappings to compare and swap

Returns
TypeDescription
Set<T>

the set of keys for which the new value was stored.

<T>putIfUntouched(Map<T,MemcacheService.CasValues> values, Expiration expiration)

public abstract Set<T> <T>putIfUntouched(Map<T,MemcacheService.CasValues> values, Expiration expiration)

A batch-processing variant of #putIfUntouched(Object, IdentifiableValue,Object,Expiration). This is more efficient than multiple single value calls.

Parameters
NameDescription
valuesMap<T,CasValues>

the key/values mappings to compare and swap

expirationExpiration

an Expiration object to set time-based expiration for a value with a null expiration value. null may be used to indicate no specific expiration.

Returns
TypeDescription
Set<T>

the set of keys for which the new value was stored.

clearAll()

public abstract void clearAll()

Empties the cache of all values across all namespaces. Statistics are not affected.

contains(Object key)

public abstract boolean contains(Object key)

Tests whether a given value is in cache, even if its value is null.

Note that, because an object may be removed from cache at any time, the following is not sound code:


   if (memcache.contains("key")) {
     foo = memcache.get("key");
     if (foo == null) {
       // continue, assuming foo had the real value null
     }
   }
  

The problem is that the cache could have dropped the entry between the call to #contains and #get(Object). This is a sounder pattern:


   foo = memcache.get("key");
   if (foo == null) {
     if (memcache.contains("key")) {
       // continue, assuming foo had the real value null
     } else {
       // continue; foo may have had a real null, but has been dropped now
     }
   }
  

Another alternative is to prefer <xref uid="com.google.appengine.api.memcache.MemcacheService.

Parameter
NameDescription
keyObject

the key object used to store the cache entry

Returns
TypeDescription
boolean

true if the cache contains an entry for the key

delete(Object key)

public abstract boolean delete(Object key)

Removes key from the cache.

Parameter
NameDescription
keyObject

the key of the entry to delete.

Returns
TypeDescription
boolean

true if an entry existed, but was discarded

delete(Object key, long millisNoReAdd)

public abstract boolean delete(Object key, long millisNoReAdd)

Removes the given key from the cache, and prevents it from being added under the SetPolicy#ADD_ONLY_IF_NOT_PRESENT policy for millisNoReAdd milliseconds thereafter. Calls to a #put method using SetPolicy#SET_ALWAYS are not blocked, however.

Parameters
NameDescription
keyObject

key to delete

millisNoReAddlong

time during which calls to put using ADD_IF_NOT_PRESENT should be denied.

Returns
TypeDescription
boolean

true if an entry existed to delete

get(Object key)

public abstract Object get(Object key)

Fetches a previously-stored value, or null if unset. To distinguish a null value from unset use MemcacheService#contains(Object).

If an error deserializing the value occurs, this passes an InvalidValueException to the service's ErrorHandler. If a service error occurs, this passes a MemcacheServiceException. See BaseMemcacheService#setErrorHandler(ErrorHandler).

Parameter
NameDescription
keyObject

the key object used to store the cache entry

Returns
TypeDescription
Object

the value object previously stored, or null

getIdentifiable(Object key)

public abstract MemcacheService.IdentifiableValue getIdentifiable(Object key)

Similar to #get, but returns an object that can later be used to perform a #putIfUntouched operation.

If an error deserializing the value occurs, this passes an InvalidValueException to the service's ErrorHandler. If a service error occurs, this passes a MemcacheServiceException. See BaseMemcacheService#setErrorHandler(ErrorHandler).

Parameter
NameDescription
keyObject

the key object used to store the cache entry

Returns
TypeDescription
MemcacheService.IdentifiableValue

an IdentifiableValue object that wraps the value object previously stored. null is returned if key is not present in the cache.

getItemForPeek(Object key)

public default MemcacheService.ItemForPeek getItemForPeek(Object key)

Similar to #get, but returns an object that can provide extra timestamp metadata.

If an error deserializing the value occurs, this passes an InvalidValueException to the service's ErrorHandler. If a service error occurs, this passes a MemcacheServiceException. See BaseMemcacheService#setErrorHandler(ErrorHandler).

Parameter
NameDescription
keyObject

the key object used to store the cache entry

Returns
TypeDescription
MemcacheService.ItemForPeek

an ItemForPeek object that wraps the value object stored as well as extra meta data timestamps. null is returned if key is not present in the cache.

getStatistics()

public abstract Stats getStatistics()

Fetches some statistics about the cache and its usage.

Returns
TypeDescription
Stats

statistics for the cache. Note that this method returns aggregated Stats for all namespaces. Response will never be null.

increment(Object key, long delta)

public abstract Long increment(Object key, long delta)

Atomically fetches, increments, and stores a given integral value. "Integral" types are Byte, Short, Integer, Long, and in some cases String. The entry must already exist, and have a non-negative value.

Incrementing by positive amounts will reach signed 64-bit max ( 2^63 - 1) and then wrap-around to signed 64-bit min (-2^63 ), continuing increments from that point.

To facilitate use as an atomic countdown, incrementing by a negative value (i.e. decrementing) will not go below zero: incrementing 2 by -5 will return 0, not -3.

Note: The actual representation of all numbers in Memcache is a string. This means if you initially stored a number as a string (e.g., "10") and then increment it, everything will work properly.

When you #get(Object) a key for a string value, wrapping occurs after exceeding the max value of an unsigned 64-bit number (2^64 - 1). When you #get(Object) a key for a numerical type, wrapping occurs after exceeding the type max value.

If a service error occurs, this passes a MemcacheServiceException to the service's ErrorHandler. See BaseMemcacheService#setErrorHandler(ErrorHandler).

Parameters
NameDescription
keyObject

the key of the entry to manipulate

deltalong

the size of the increment, positive or negative

Returns
TypeDescription
Long

the post-increment value, as a long. However, a #get(Object) of the key will still have the original type ( Byte, Short, etc.). If there is no entry for key, returns null.

increment(Object key, long delta, Long initialValue)

public abstract Long increment(Object key, long delta, Long initialValue)

Like normal increment, but allows for an optional initial value for the key to take on if not already present in the cache.

Note, the provided initial value can be negative, which allows incrementing negative numbers. This is in contrast to the base version of this method, which requires a pre-existing value (e.g. one stored with #put) to be non-negative prior to being incremented. See Also: #increment(Object, long)

Parameters
NameDescription
keyObject
deltalong
initialValueLong

value to insert into the cache if the key is not present

Returns
TypeDescription
Long

put(Object key, Object value)

public abstract void put(Object key, Object value)

A convenience shortcut, equivalent to put(key, value, null, SetPolicy.SET_ALWAYS).

Parameters
NameDescription
keyObject

key of the new entry

valueObject

value for the new entry

put(Object key, Object value, Expiration expires)

public abstract void put(Object key, Object value, Expiration expires)

Convenience put, equivalent to put(key, value, expiration, SetPolicy.SET_ALWAYS).

Parameters
NameDescription
keyObject

key of the new entry

valueObject

value for the new entry

expiresExpiration

time-based Expiration, or null for none

put(Object key, Object value, Expiration expires, MemcacheService.SetPolicy policy)

public abstract boolean put(Object key, Object value, Expiration expires, MemcacheService.SetPolicy policy)

Store a new value into the cache, using key, but subject to the policy regarding existing entries.

Parameters
NameDescription
keyObject

the key for the new cache entry

valueObject

the value to be stored

expiresExpiration

an Expiration object to set time-based expiration. null may be used indicate no specific expiration.

policyMemcacheService.SetPolicy

Requests particular handling regarding pre-existing entries under the same key. This parameter must not be null.

Returns
TypeDescription
boolean

true if a new entry was created, false if not because of the policy

putAll(Map<?,?> values)

public abstract void putAll(Map<?,?> values)

Convenience multi-put, equivalent to putAll(values, expires, SetPolicy.SET_ALWAYS).

Parameter
NameDescription
valuesMap<?,?>

key/value mappings for new entries to add to the cache

putAll(Map<?,?> values, Expiration expires)

public abstract void putAll(Map<?,?> values, Expiration expires)

Convenience multi-put, equivalent to putAll(values, expires, SetPolicy.SET_ALWAYS).

Parameters
NameDescription
valuesMap<?,?>

key/value mappings to add to the cache

expiresExpiration

expiration time for the new values, or null for no time-based expiration

putIfUntouched(Object key, MemcacheService.IdentifiableValue oldValue, Object newValue)

public abstract boolean putIfUntouched(Object key, MemcacheService.IdentifiableValue oldValue, Object newValue)

Convenience shortcut, equivalent to put(key, oldValue, newValue, null).

Parameters
NameDescription
keyObject

key of the entry

oldValueMemcacheService.IdentifiableValue

identifier for the value to compare against newValue

newValueObject

new value to store if oldValue is still there

Returns
TypeDescription
boolean

true if newValue was stored, false otherwise.

putIfUntouched(Object key, MemcacheService.IdentifiableValue oldValue, Object newValue, Expiration expires)

public abstract boolean putIfUntouched(Object key, MemcacheService.IdentifiableValue oldValue, Object newValue, Expiration expires)

Atomically, store newValue only if no other value has been stored since oldValue was retrieved. oldValue is an IdentifiableValue that was returned from a previous call to #getIdentifiable.

If another value in the cache for key has been stored, or if this cache entry has been evicted, then nothing is stored by this call and false is returned.

Note that storing the same value again does count as a "touch" for this purpose.

Using #getIdentifiable and #putIfUntouched together constitutes an operation that either succeeds atomically or fails due to concurrency (or eviction), in which case the entire operation can be retried by the application.

Parameters
NameDescription
keyObject

key of the entry

oldValueMemcacheService.IdentifiableValue

identifier for the value to compare against newValue

newValueObject

new value to store if oldValue is still there

expiresExpiration

an Expiration object to set time-based expiration. null may be used to indicate no specific expiration.

Returns
TypeDescription
boolean

true if newValue was stored, false otherwise

setNamespace(String newNamespace) (deprecated)

public abstract void setNamespace(String newNamespace)
Parameter
NameDescription
newNamespaceString