Uses of Interface
com.google.appengine.api.memcache.MemcacheService.ItemForPeek
-
Packages that use MemcacheService.ItemForPeek Package Description com.google.appengine.api.memcache Provides fast but unreliable data storage, also accessible via a JCache interface. -
-
Uses of MemcacheService.ItemForPeek in com.google.appengine.api.memcache
Methods in com.google.appengine.api.memcache that return MemcacheService.ItemForPeek Modifier and Type Method Description default MemcacheService.ItemForPeek
MemcacheService. getItemForPeek(Object key)
Similar toMemcacheService.get(java.lang.Object)
, but returns an object that can provide extra timestamp metadata.Methods in com.google.appengine.api.memcache that return types with arguments of type MemcacheService.ItemForPeek Modifier and Type Method Description Future<MemcacheService.ItemForPeek>
AsyncMemcacheService. getItemForPeek(Object key)
<T> Future<Map<T,MemcacheService.ItemForPeek>>
AsyncMemcacheService. getItemsForPeek(Collection<T> keys)
default <T> Map<T,MemcacheService.ItemForPeek>
MemcacheService. getItemsForPeek(Collection<T> keys)
Performs a getItemForPeek for multiple keys at once.
-