Interface MemcacheService
- All Superinterfaces:
BaseMemcacheService
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(java.lang.Object, long), are
atomic, while batch methods such as getAll(java.util.Collection<T>), putAll(java.util.Map<T, ?>, com.google.appengine.api.memcache.Expiration, com.google.appengine.api.memcache.MemcacheService.SetPolicy), and
deleteAll(java.util.Collection<T>) do not provide atomicity. Arbitrary operations on single
entries can be performed atomically by using putIfUntouched(java.lang.Object, com.google.appengine.api.memcache.MemcacheService.IdentifiableValue, java.lang.Object, com.google.appengine.api.memcache.Expiration) in
combination with getIdentifiable(java.lang.Object).
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().
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA holder for compare and set values.static interfaceEncapsulates an Object that is returned bygetIdentifiable(java.lang.Object).static interface...static enumCache replacement strategies forput(java.lang.Object, java.lang.Object, com.google.appengine.api.memcache.Expiration, com.google.appengine.api.memcache.MemcacheService.SetPolicy)operations, indicating how to handle putting a value that already exists. -
Method Summary
Modifier and TypeMethodDescriptionvoidclearAll()Empties the cache of all values across all namespaces.booleanTests whether a given value is in cache, even if its value isnull.booleanRemoveskeyfrom the cache.booleanRemoves the given key from the cache, and prevents it from being added under theMemcacheService.SetPolicy.ADD_ONLY_IF_NOT_PRESENTpolicy formillisNoReAddmilliseconds thereafter.<T> Set<T> deleteAll(Collection<T> keys) Batch version ofdelete(Object).<T> Set<T> deleteAll(Collection<T> keys, long millisNoReAdd) Batch version ofdelete(Object, long).Fetches a previously-stored value, ornullif unset.getAll(Collection<T> keys) Performs a get of multiple keys at once.getIdentifiable(Object key) Similar toget(java.lang.Object), but returns an object that can later be used to perform aputIfUntouched(java.lang.Object, com.google.appengine.api.memcache.MemcacheService.IdentifiableValue, java.lang.Object, com.google.appengine.api.memcache.Expiration)operation.getIdentifiables(Collection<T> keys) Performs a getIdentifiable for multiple keys at once.default MemcacheService.ItemForPeekgetItemForPeek(Object key) Similar toget(java.lang.Object), but returns an object that can provide extra timestamp metadata.default <T> Map<T, MemcacheService.ItemForPeek> getItemsForPeek(Collection<T> keys) Performs a getItemForPeek for multiple keys at once.Fetches some statistics about the cache and its usage.Atomically fetches, increments, and stores a given integral value.Like normal increment, but allows for an optional initial value for the key to take on if not already present in the cache.incrementAll(Collection<T> keys, long delta) Like normal increment, but increments a batch of separate keys in parallel by the same delta.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.incrementAll(Map<T, Long> offsets) Like normal increment, but accepts a mapping of separate controllable offsets for each key individually.incrementAll(Map<T, Long> offsets, Long initialValue) Like normal increment, but accepts a mapping of separate controllable offsets for each key individually.voidA convenience shortcut, equivalent toput(key, value, null, SetPolicy.SET_ALWAYS).voidput(Object key, Object value, Expiration expires) Convenience put, equivalent toput(key, value, expiration, SetPolicy.SET_ALWAYS).booleanput(Object key, Object value, Expiration expires, MemcacheService.SetPolicy policy) Store a new value into the cache, usingkey, but subject to thepolicyregarding existing entries.voidConvenience multi-put, equivalent toputAll(values, expires, SetPolicy.SET_ALWAYS).voidputAll(Map<?, ?> values, Expiration expires) Convenience multi-put, equivalent toputAll(values, expires, SetPolicy.SET_ALWAYS).<T> Set<T> putAll(Map<T, ?> values, Expiration expires, MemcacheService.SetPolicy policy) booleanputIfUntouched(Object key, MemcacheService.IdentifiableValue oldValue, Object newValue) Convenience shortcut, equivalent toput(key, oldValue, newValue, null).booleanputIfUntouched(Object key, MemcacheService.IdentifiableValue oldValue, Object newValue, Expiration expires) Atomically, storenewValueonly if no other value has been stored sinceoldValuewas retrieved.<T> Set<T> putIfUntouched(Map<T, MemcacheService.CasValues> values) Convenience shortcut, equivalent toputIfUntouched(values, null).<T> Set<T> putIfUntouched(Map<T, MemcacheService.CasValues> values, Expiration expiration) A batch-processing variant ofputIfUntouched(Object, IdentifiableValue,Object,Expiration).voidsetNamespace(String newNamespace) Deprecated.Methods inherited from interface com.google.appengine.api.memcache.BaseMemcacheService
getErrorHandler, getNamespace, setErrorHandler
-
Method Details
-
setNamespace
Deprecated.useMemcacheServiceFactory.getMemcacheService(String)instead. -
get
Fetches a previously-stored value, ornullif unset. To distinguish anullvalue from unset usecontains(Object).If an error deserializing the value occurs, this passes an
InvalidValueExceptionto the service'sErrorHandler. If a service error occurs, this passes aMemcacheServiceException. SeeBaseMemcacheService.setErrorHandler(ErrorHandler).- Parameters:
key- the key object used to store the cache entry- Returns:
- the value object previously stored, or
null - Throws:
IllegalArgumentException- ifkeyis notSerializableand is notnull
-
getIdentifiable
Similar toget(java.lang.Object), but returns an object that can later be used to perform aputIfUntouched(java.lang.Object, com.google.appengine.api.memcache.MemcacheService.IdentifiableValue, java.lang.Object, com.google.appengine.api.memcache.Expiration)operation.If an error deserializing the value occurs, this passes an
InvalidValueExceptionto the service'sErrorHandler. If a service error occurs, this passes aMemcacheServiceException. SeeBaseMemcacheService.setErrorHandler(ErrorHandler).- Parameters:
key- the key object used to store the cache entry- Returns:
- an
MemcacheService.IdentifiableValueobject that wraps the value object previously stored.nullis returned ifkeyis not present in the cache. - Throws:
IllegalArgumentException- ifkeyis notSerializableand is notnull
-
getItemForPeek
Similar toget(java.lang.Object), but returns an object that can provide extra timestamp metadata.If an error deserializing the value occurs, this passes an
InvalidValueExceptionto the service'sErrorHandler. If a service error occurs, this passes aMemcacheServiceException. SeeBaseMemcacheService.setErrorHandler(ErrorHandler).- Parameters:
key- the key object used to store the cache entry- Returns:
- an
MemcacheService.ItemForPeekobject that wraps the value object stored as well as extra meta data timestamps.nullis returned ifkeyis not present in the cache. - Throws:
IllegalArgumentException- ifkeyis notSerializableand is notnull
-
getIdentifiables
Performs a getIdentifiable for multiple keys at once. This is more efficient than multiple separate calls togetIdentifiable(Object).If an error deserializing the value occurs, this passes an
InvalidValueExceptionto the service'sErrorHandler. If a service error occurs, this passes aMemcacheServiceException. SeeBaseMemcacheService.setErrorHandler(ErrorHandler).- Parameters:
keys- a collection of keys for which values should be retrieved- Returns:
- 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.
- Throws:
IllegalArgumentException- if any element ofkeysis notSerializableand is notnull
-
getItemsForPeek
Performs a getItemForPeek for multiple keys at once. This is more efficient than multiple separate calls togetItemForPeek(Object).If an error deserializing the value occurs, this passes an
InvalidValueExceptionto the service'sErrorHandler. If a service error occurs, this passes aMemcacheServiceException. SeeBaseMemcacheService.setErrorHandler(ErrorHandler).- Parameters:
keys- a collection of keys for which values should be retrieved- Returns:
- a mapping from keys to
MemcacheService.ItemForPeekof any entries found. If a requested key is not found in the cache, the key will not be in the returned Map. - Throws:
IllegalArgumentException- if any element ofkeysis notSerializableand is notnull
-
contains
Tests whether a given value is in cache, even if its value isnull.Note that, because an object may be removed from cache at any time, the following is not sound code:
The problem is that the cache could have dropped the entry between the call toif (memcache.contains("key")) { foo = memcache.get("key"); if (foo == null) { // continue, assuming foo had the real value null } }contains(java.lang.Object)andget(Object). This is a sounder pattern:
Another alternative is to preferfoo = 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 } }getAll(Collection), although it requires making an otherwise-unneededCollectionof some sort.- Parameters:
key- the key object used to store the cache entry- Returns:
trueif the cache contains an entry for the key- Throws:
IllegalArgumentException- ifkeyis notSerializableand is notnull
-
getAll
Performs a get of multiple keys at once. This is more efficient than multiple separate calls toget(Object), and allows a single call to both test forcontains(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
InvalidValueExceptionto the service'sErrorHandler. If a service error occurs, this passes aMemcacheServiceException. SeeBaseMemcacheService.setErrorHandler(ErrorHandler).- Parameters:
keys- a collection of keys for which values should be retrieved- Returns:
- 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.
- Throws:
IllegalArgumentException- if any element ofkeysis notSerializableand is notnullInvalidValueException- for any error in deserializing the cache value
-
put
Store a new value into the cache, usingkey, but subject to thepolicyregarding existing entries.- Parameters:
key- the key for the new cache entryvalue- the value to be storedexpires- anExpirationobject to set time-based expiration.nullmay be used indicate no specific expiration.policy- Requests particular handling regarding pre-existing entries under the same key. This parameter must not benull.- Returns:
trueif a new entry was created,falseif not because of thepolicy- Throws:
IllegalArgumentException- ifkeyorvalueis notSerializableand is notnullMemcacheServiceException- if server responds with an error and aConsistentErrorHandleris not configured
-
put
Convenience put, equivalent toput(key, value, expiration, SetPolicy.SET_ALWAYS).- Parameters:
key- key of the new entryvalue- value for the new entryexpires- time-basedExpiration, ornullfor none- Throws:
IllegalArgumentException- ifkeyorvalueis notSerializableand is notnullMemcacheServiceException- if server responds with an error and aConsistentErrorHandleris not configured
-
put
A convenience shortcut, equivalent toput(key, value, null, SetPolicy.SET_ALWAYS).- Parameters:
key- key of the new entryvalue- value for the new entry- Throws:
IllegalArgumentException- ifkeyorvalueis notSerializableand is notnullMemcacheServiceException- if server responds with an error and aConsistentErrorHandleris not configured
-
putAll
A batch-processing variant ofput(java.lang.Object, java.lang.Object, com.google.appengine.api.memcache.Expiration, com.google.appengine.api.memcache.MemcacheService.SetPolicy). This is more efficiently implemented by the service than multiple calls.- Parameters:
values- the key/value mappings to add to the cacheexpires- the expiration time for allvalues, ornullfor no time-based expiration.policy- what to do if the entry is or is not already present- Returns:
- the set of keys for which entries were created. Keys in
valuesmay not be in the returned set because of thepolicyregarding pre-existing entries. - Throws:
IllegalArgumentException- if any of the keys or values are notSerializableand are notnullMemcacheServiceException- if server responds with an error for any of the given values and aConsistentErrorHandleris not configured
-
putAll
Convenience multi-put, equivalent toputAll(values, expires, SetPolicy.SET_ALWAYS).- Parameters:
values- key/value mappings to add to the cacheexpires- expiration time for the new values, ornullfor no time-based expiration- Throws:
IllegalArgumentException- if any of the keys or values are notSerializableand are notnullMemcacheServiceException- if server responds with an error for any of the given values and aConsistentErrorHandleris not configured
-
putAll
Convenience multi-put, equivalent toputAll(values, expires, SetPolicy.SET_ALWAYS).- Parameters:
values- key/value mappings for new entries to add to the cache- Throws:
IllegalArgumentException- if any of the keys or values are notSerializableand are notnullMemcacheServiceException- if server responds with an error for any of the given values and aConsistentErrorHandleris not configured
-
putIfUntouched
boolean putIfUntouched(Object key, MemcacheService.IdentifiableValue oldValue, Object newValue, Expiration expires) Atomically, storenewValueonly if no other value has been stored sinceoldValuewas retrieved.oldValueis anMemcacheService.IdentifiableValuethat was returned from a previous call togetIdentifiable(java.lang.Object).If another value in the cache for
keyhas been stored, or if this cache entry has been evicted, then nothing is stored by this call andfalseis returned.Note that storing the same value again does count as a "touch" for this purpose.
Using
getIdentifiable(java.lang.Object)andputIfUntouched(java.lang.Object, com.google.appengine.api.memcache.MemcacheService.IdentifiableValue, java.lang.Object, com.google.appengine.api.memcache.Expiration)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:
key- key of the entryoldValue- identifier for the value to compare against newValuenewValue- new value to store if oldValue is still thereexpires- anExpirationobject to set time-based expiration.nullmay be used to indicate no specific expiration.- Returns:
trueifnewValuewas stored,falseotherwise- Throws:
IllegalArgumentException- ifkeyornewValueis notSerializableand is notnull. Also throws IllegalArgumentException ifoldValueisnull.MemcacheServiceException- if server responds with an error and aConsistentErrorHandleris not configured
-
putIfUntouched
Convenience shortcut, equivalent toput(key, oldValue, newValue, null).- Parameters:
key- key of the entryoldValue- identifier for the value to compare against newValuenewValue- new value to store if oldValue is still there- Returns:
trueifnewValuewas stored,falseotherwise.- Throws:
IllegalArgumentException- ifkeyornewValueis notSerializableand is notnull. Also throws IllegalArgumentException ifoldValueisnull.MemcacheServiceException- if server responds with an error and aConsistentErrorHandleris not configured
-
putIfUntouched
Convenience shortcut, equivalent toputIfUntouched(values, null).- Parameters:
values- the key/values mappings to compare and swap- Returns:
- the set of keys for which the new value was stored.
- Throws:
IllegalArgumentException- if any of the keys are notSerializableor any of the values are notSerializableornullIllegalArgumentException- If any of the keys or newValues are notSerializableand are notnull. Also throws IllegalArgumentException ifvalueshas any nulls.MemcacheServiceException- if server responds with an error for any of the givenvaluesand aConsistentErrorHandleris not configured
-
putIfUntouched
A batch-processing variant ofputIfUntouched(Object, IdentifiableValue,Object,Expiration). This is more efficient than multiple single value calls.- Parameters:
values- the key/values mappings to compare and swapexpiration- anExpirationobject to set time-based expiration for avaluewith anullexpirationvalue.nullmay be used to indicate no specific expiration.- Returns:
- the set of keys for which the new value was stored.
- Throws:
IllegalArgumentException- If any of the keys or newValues are notSerializableand are notnull. Also throws IllegalArgumentException ifvalueshas any nulls.MemcacheServiceException- if server responds with an error for any of the givenvaluesand aConsistentErrorHandleris not configured
-
delete
Removeskeyfrom the cache.- Parameters:
key- the key of the entry to delete.- Returns:
trueif an entry existed, but was discarded- Throws:
IllegalArgumentException- ifkeyis notSerializableand is notnull
-
delete
Removes the given key from the cache, and prevents it from being added under theMemcacheService.SetPolicy.ADD_ONLY_IF_NOT_PRESENTpolicy formillisNoReAddmilliseconds thereafter. Calls to aput(java.lang.Object, java.lang.Object, com.google.appengine.api.memcache.Expiration, com.google.appengine.api.memcache.MemcacheService.SetPolicy)method usingMemcacheService.SetPolicy.SET_ALWAYSare not blocked, however.- Parameters:
key- key to deletemillisNoReAdd- time during which calls to put using ADD_IF_NOT_PRESENT should be denied.- Returns:
trueif an entry existed to delete- Throws:
IllegalArgumentException- ifkeyis notSerializableand is notnull
-
deleteAll
Batch version ofdelete(Object).- Parameters:
keys- a collection of keys for entries to delete- Returns:
- the Set of keys deleted. Any keys in
keysbut not in the returned set were not found in the cache. The iteration order of the returned set matches the iteration order of the providedkeys. - Throws:
IllegalArgumentException- if any element ofkeysis notSerializableand is notnull
-
deleteAll
Batch version ofdelete(Object, long).- Parameters:
keys- a collection of keys for entries to deletemillisNoReAdd- time during which calls to put usingMemcacheService.SetPolicy.ADD_ONLY_IF_NOT_PRESENTshould be denied.- Returns:
- the Set of keys deleted. Any keys in
keysbut not in the returned set were not found in the cache. The iteration order of the returned set matches the iteration order of the providedkeys. - Throws:
IllegalArgumentException- if any element ofkeysis notSerializableand is notnull
-
increment
Atomically fetches, increments, and stores a given integral value. "Integral" types areByte,Short,Integer,Long, and in some casesString. 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
2by-5will return0, 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 youget(Object)a key for a numerical type, wrapping occurs after exceeding the type max value.If a service error occurs, this passes a
MemcacheServiceExceptionto the service'sErrorHandler. SeeBaseMemcacheService.setErrorHandler(ErrorHandler).- Parameters:
key- the key of the entry to manipulatedelta- the size of the increment, positive or negative- Returns:
- 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 forkey, returnsnull. - Throws:
IllegalArgumentException- ifkeyis notSerializableand is notnullInvalidValueException- if the object incremented is not of a integral type or holding a negative value
-
increment
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(java.lang.Object, java.lang.Object, com.google.appengine.api.memcache.Expiration, com.google.appengine.api.memcache.MemcacheService.SetPolicy)) to be non-negative prior to being incremented.- Parameters:
initialValue- value to insert into the cache if the key is not present- See Also:
-
incrementAll
Like normal increment, but increments a batch of separate keys in parallel by the same delta.- Returns:
- mapping keys to their new values; values will be null if they could not be incremented or were not present in the cache
- See Also:
-
incrementAll
Like normal increment, but increments a batch of separate keys in parallel by the same delta and potentially sets a starting value.- Parameters:
initialValue- value to insert into the cache if the key is not present- Returns:
- mapping keys to their new values; values will be null if they could not be incremented for whatever reason
- See Also:
-
incrementAll
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.- Returns:
- mapping keys to their new values; values will be null if they could not be incremented for whatever reason
- See Also:
-
incrementAll
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.- Returns:
- mapping keys to their new values; values will be null if they could not be incremented for whatever reason
- See Also:
-
clearAll
void clearAll()Empties the cache of all values across all namespaces. Statistics are not affected. -
getStatistics
Stats getStatistics()Fetches some statistics about the cache and its usage.- Returns:
- statistics for the cache. Note that this method returns
aggregated
Statsfor all namespaces. Response will never benull.
-
MemcacheServiceFactory.getMemcacheService(String)instead.