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 ;A SyncCacheApi that wraps an AsyncCacheApi
A cache API that uses synchronous calls rather than async calls.
A cache API that uses synchronous calls rather than async calls. Useful when you know you have a fast in-memory cache.
A cache API.
A cache API. This class is deprecated and will be removed in future versions.
(Since version 2.6.0) Use SyncCacheApi or AsyncCacheApi instead
Contains the Cache access API.