Negatively-cache specified keys. Subsequent loads for these keys (without calling invalidate) may return a negative CacheLoadResult
keys to cache negatively
Cache many objects for specified keys.
map from cache key to object to cache for key
Invalidate specified keys in cache. Subsequent loads for these keys may return a cache miss.
keys to invalidate
Load many keys from the cache. Return info in a format that is useful for read-through caching and negative caching.
cache keys to load
A generic cacher stores and loads key-value pairs. It also supports negative caching - it stores the absence of keys that don't exist in the backing datastore. It is also responsible for cache key creation.