The cache API
A helper to add caching to an Action.
Builds an action with caching behavior.
Builds an action with caching behavior. Typically created with one of the methods in the Cached
class. Uses both server and client caches:
Expires
header to the response, so clients can cache response content ;Etag
header to the response, so clients can cache response content and ask the server for freshness ;EhCache components for compile time injection
EhCache implementation.
EhCache implementation.
Builds an action with caching behavior.
Builds an action with caching behavior. Typically created with one of the methods in the Cached
companion object. Uses both server and client caches:
Expires
header to the response, so clients can cache response content ;Etag
header to the response, so clients can cache response content and ask the server for freshness ;Unlike CachedBuilder
, an UnboundCachedBuilder
isn't bound to a particular
cache when it is created. It binds the default cache of the current application
when it builds an action.
Public Cache API.
Public Cache API.
The underlying Cache implementation is received from plugin.
A helper to add caching to an Action.
A helper to add caching to an Action. This helper uses the Application's default cache.
If you want to inject a custom cache, see the Cached
class.
Contains the Cache access API.