HttpCache
class HttpCache implements HttpKernelInterface, TerminableInterface
Cache provides HTTP caching.
Methods
Constructor.
Gets the current store.
Returns an array of events that took place during processing of the last request.
Returns a log message for the events of the last request processing.
Gets the Request instance associated with the master request.
Gets the Kernel instance.
Gets the Surrogate instance.
Invalidates non-safe methods (like POST, PUT, and DELETE).
Checks whether the cache entry is "fresh enough" to satisfy the Request.
Details
__construct(HttpKernelInterface $kernel, StoreInterface $store, SurrogateInterface $surrogate = null, array $options = array())
Constructor.
The available options are:
debug: If true, the traces are added as a HTTP header to ease debugging
default_ttl The number of seconds that a cache entry should be considered fresh when no explicit freshness information is provided in a response. Explicit Cache-Control or Expires headers override this value. (default: 0)
private_headers Set of request headers that trigger "private" cache-control behavior on responses that don't explicitly state whether the response is public or private via a Cache-Control directive. (default: Authorization and Cookie)
allow_reload Specifies whether the client can force a cache reload by including a Cache-Control "no-cache" directive in the request. Set it to
true
for compliance with RFC 2616. (default: false)allow_revalidate Specifies whether the client can force a cache revalidate by including a Cache-Control "max-age=0" directive in the request. Set it to
true
for compliance with RFC 2616. (default: false)stale_while_revalidate Specifies the default number of seconds (the granularity is the second as the Response TTL precision is a second) during which the cache can immediately return a stale response while it revalidates it in the background (default: 2). This setting is overridden by the stale-while-revalidate HTTP Cache-Control extension (see RFC 5861).
stale_if_error Specifies the default number of seconds (the granularity is the second) during which the cache can serve a stale response when an error is encountered (default: 60). This setting is overridden by the stale-if-error HTTP Cache-Control extension (see RFC 5861).
Response
handle(Request $request, int $type = HttpKernelInterface::MASTER_REQUEST, bool $catch = true)
Handles a Request to convert it to a Response.
When $catch is true, the implementation must catch all exceptions and do its best to convert them to a Response instance.
terminate(Request $request, Response $response)
Terminates a request/response cycle.
Should be called after sending the response and before shutting down the kernel.
protected Response
pass(Request $request, bool $catch = false)
Forwards the Request to the backend without storing the Response in the cache.
protected Response
invalidate(Request $request, bool $catch = false)
Invalidates non-safe methods (like POST, PUT, and DELETE).
protected Response
lookup(Request $request, bool $catch = false)
Lookups a Response from the cache for the given Request.
When a matching cache entry is found and is fresh, it uses it as the response without forwarding any request to the backend. When a matching cache entry is found but is stale, it attempts to "validate" the entry with the backend using conditional GET. When no matching cache entry is found, it triggers "miss" processing.
protected Response
validate(Request $request, Response $entry, bool $catch = false)
Validates that a cache entry is fresh.
The original request is used as a template for a conditional GET request with the backend.
protected Response
fetch(Request $request, bool $catch = false)
Unconditionally fetches a fresh response from the backend and stores it in the cache if is cacheable.
protected Response
forward(Request $request, bool $catch = false, Response $entry = null)
Forwards the Request to the backend and returns the Response.
All backend requests (cache passes, fetches, cache validations) run through this method.
protected bool
isFreshEnough(Request $request, Response $entry)
Checks whether the cache entry is "fresh enough" to satisfy the Request.