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
BaseMemcacheServiceMethods
<T>deleteAll(Collection<T> keys)
public abstract Set<T> <T>deleteAll(Collection<T> keys)
Batch version of #delete(Object).
Parameter | |
---|---|
Name | Description |
keys |
Collection<T> a collection of keys for entries to delete |
Returns | |
---|---|
Type | Description |
Set<T> |
the Set of keys deleted. Any keys in |
<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 | |
---|---|
Name | Description |
keys |
Collection<T> a collection of keys for entries to delete |
millisNoReAdd |
long time during which calls to put using SetPolicy#ADD_ONLY_IF_NOT_PRESENT should be denied. |
Returns | |
---|---|
Type | Description |
Set<T> |
the Set of keys deleted. Any keys in |
<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 | |
---|---|
Name | Description |
keys |
Collection<T> a collection of keys for which values should be retrieved |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
keys |
Collection<T> a collection of keys for which values should be retrieved |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
keys |
Collection<T> a collection of keys for which values should be retrieved |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
keys |
Collection<T> |
delta |
long |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
keys |
Collection<T> |
delta |
long |
initialValue |
Long value to insert into the cache if the key is not present |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
offsets |
Map<T,Long> |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
offsets |
Map<T,Long> |
initialValue |
Long |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
values |
Map<T,?> the key/value mappings to add to the cache |
expires |
Expiration the expiration time for all |
policy |
MemcacheService.SetPolicy what to do if the entry is or is not already present |
Returns | |
---|---|
Type | Description |
Set<T> |
the set of keys for which entries were created. Keys in
|
<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 | |
---|---|
Name | Description |
values |
Map<T,CasValues> the key/values mappings to compare and swap |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
values |
Map<T,CasValues> the key/values mappings to compare and swap |
expiration |
Expiration an Expiration object to set time-based
expiration for a value with a |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
key |
Object the key object used to store the cache entry |
Returns | |
---|---|
Type | Description |
boolean |
|
delete(Object key)
public abstract boolean delete(Object key)
Removes key
from the cache.
Parameter | |
---|---|
Name | Description |
key |
Object the key of the entry to delete. |
Returns | |
---|---|
Type | Description |
boolean |
|
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 | |
---|---|
Name | Description |
key |
Object key to delete |
millisNoReAdd |
long time during which calls to put using ADD_IF_NOT_PRESENT should be denied. |
Returns | |
---|---|
Type | Description |
boolean |
|
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 | |
---|---|
Name | Description |
key |
Object the key object used to store the cache entry |
Returns | |
---|---|
Type | Description |
Object |
the value object previously stored, or |
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 | |
---|---|
Name | Description |
key |
Object the key object used to store the cache entry |
Returns | |
---|---|
Type | Description |
MemcacheService.IdentifiableValue |
an IdentifiableValue object that wraps the
value object previously stored. |
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 | |
---|---|
Name | Description |
key |
Object the key object used to store the cache entry |
Returns | |
---|---|
Type | Description |
MemcacheService.ItemForPeek |
an ItemForPeek object that wraps the
value object stored as well as extra meta data timestamps.
|
getStatistics()
public abstract Stats getStatistics()
Fetches some statistics about the cache and its usage.
Returns | |
---|---|
Type | Description |
Stats |
statistics for the cache. Note that this method returns
aggregated Stats for all namespaces. Response will never be
|
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 | |
---|---|
Name | Description |
key |
Object the key of the entry to manipulate |
delta |
long the size of the increment, positive or negative |
Returns | |
---|---|
Type | Description |
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
|
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 | |
---|---|
Name | Description |
key |
Object |
delta |
long |
initialValue |
Long value to insert into the cache if the key is not present |
Returns | |
---|---|
Type | Description |
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 | |
---|---|
Name | Description |
key |
Object key of the new entry |
value |
Object 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 | |
---|---|
Name | Description |
key |
Object key of the new entry |
value |
Object value for the new entry |
expires |
Expiration time-based Expiration, or |
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 | |
---|---|
Name | Description |
key |
Object the key for the new cache entry |
value |
Object the value to be stored |
expires |
Expiration an Expiration object to set time-based expiration.
|
policy |
MemcacheService.SetPolicy Requests particular handling regarding pre-existing entries
under the same key. This parameter must not be |
Returns | |
---|---|
Type | Description |
boolean |
|
putAll(Map<?,?> values)
public abstract void putAll(Map<?,?> values)
Convenience multi-put, equivalent to putAll(values, expires, SetPolicy.SET_ALWAYS).
Parameter | |
---|---|
Name | Description |
values |
Map<?,?> 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 | |
---|---|
Name | Description |
values |
Map<?,?> key/value mappings to add to the cache |
expires |
Expiration expiration time for the new values, or |
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 | |
---|---|
Name | Description |
key |
Object key of the entry |
oldValue |
MemcacheService.IdentifiableValue identifier for the value to compare against newValue |
newValue |
Object new value to store if oldValue is still there |
Returns | |
---|---|
Type | Description |
boolean |
|
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 | |
---|---|
Name | Description |
key |
Object key of the entry |
oldValue |
MemcacheService.IdentifiableValue identifier for the value to compare against newValue |
newValue |
Object new value to store if oldValue is still there |
expires |
Expiration an Expiration object to set time-based expiration.
|
Returns | |
---|---|
Type | Description |
boolean |
|
setNamespace(String newNamespace) (deprecated)
public abstract void setNamespace(String newNamespace)
Deprecated. use MemcacheServiceFactory#getMemcacheService(String) instead.
Parameter | |
---|---|
Name | Description |
newNamespace |
String |