Uses of Package
org.springframework.data.couchbase.cache
Packages that use org.springframework.data.couchbase.cache
-
Classes in org.springframework.data.couchbase.cache used by org.springframework.data.couchbase.cacheClassDescription
CacheKeyPrefix
provides a hook for creating custom prefixes prepended to the actual key stored in Couchbase.Couchbase-backed Cache Methods that take a Class return non-wrapped objects - cache-miss cannot be distinguished from cached null - this is what AbstractValueAdaptingCache does Methods that do not take a Class return wrapped objects - the wrapper is null for cache-miss - the exception is T get(final Object key, final Callable<T> valueLoader), which does not return a wrapper because if there is a cache-miss, it gets the value from valueLoader (and caches it).