class Store implements StoreInterface
Store implements all the logic for storing cache metadata (Request and Response headers).
Methods
__construct(string $root) Constructor. | ||
cleanup() Cleanups storage. | ||
bool|string | lock(Request $request) Tries to lock the cache for a given Request, without blocking. | |
bool | unlock(Request $request) Releases the lock for the given Request. | |
bool | isLocked(Request $request) Returns whether or not a lock exists. | |
Response|null | lookup(Request $request) Locates a cached Response for the Request provided. | |
string | write(Request $request, Response $response) Writes a cache entry to the store for the given Request and Response. | |
invalidate(Request $request) Invalidates all cache entries that match the request. | ||
bool | purge(string $url) Purges data for the given URL. | |
getPath($key) |
Details
__construct(string $root)
Constructor.
cleanup()
Cleanups storage.
bool|string lock(Request $request)
Tries to lock the cache for a given Request, without blocking.
bool unlock(Request $request)
Releases the lock for the given Request.
bool isLocked(Request $request)
Returns whether or not a lock exists.
string write(Request $request, Response $response)
Writes a cache entry to the store for the given Request and Response.
Existing entries are read and any that match the response are removed. This method calls write with the new list of cache entries.
invalidate(Request $request)
Invalidates all cache entries that match the request.
bool purge(string $url)
Purges data for the given URL.
Please login to continue.