Uses of Class
com.google.appengine.api.memcache.MemcacheService.SetPolicy
-
Packages that use MemcacheService.SetPolicy Package Description com.google.appengine.api.memcache Provides fast but unreliable data storage, also accessible via a JCache interface. -
-
Uses of MemcacheService.SetPolicy in com.google.appengine.api.memcache
Methods in com.google.appengine.api.memcache that return MemcacheService.SetPolicy Modifier and Type Method Description static MemcacheService.SetPolicy
MemcacheService.SetPolicy. valueOf(String name)
Returns the enum constant of this type with the specified name.static MemcacheService.SetPolicy[]
MemcacheService.SetPolicy. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.google.appengine.api.memcache with parameters of type MemcacheService.SetPolicy Modifier and Type Method Description Future<Boolean>
AsyncMemcacheService. put(Object key, Object value, Expiration expires, MemcacheService.SetPolicy policy)
boolean
MemcacheService. put(Object key, Object value, Expiration expires, MemcacheService.SetPolicy policy)
Store a new value into the cache, usingkey
, but subject to thepolicy
regarding existing entries.<T> Future<Set<T>>
AsyncMemcacheService. putAll(Map<T,?> values, Expiration expires, MemcacheService.SetPolicy policy)
<T> Set<T>
MemcacheService. putAll(Map<T,?> values, Expiration expires, MemcacheService.SetPolicy policy)
-