Category: Cache API
Uses hook_entity_view_alter() to add an additional cache context (user permissions) to an entity’s render array.
Attaching Cache Contexts via CacheableMetadata in a Service
How to attach cache contexts to a render array using CacheableMetadata in a custom service.
Basic Cache Get/Set
How to get and set data in the cache using a unique cache ID.
Block Plugin with Cache Metadata
Custom block plugin that defines cache metadata for its render output.
Custom Cache Bin Usage
How to use a custom cache bin (e.g., defined in your module’s services YAML as “cache.my_module_bin”) to store and retrieve data.
Custom Cache Context Plugin
Defines a custom cache context plugin that returns the current hour. (Make sure your object is serializable.)
Custom Cache Service Using Dependency Injection
This snippet defines a service that uses dependency injection to work with the cache backend.
Invalidating Cache Tags
How to invalidate cached data by using cache tags.
Overriding Cache Metadata via Dependency Injection
How to override default cache metadata for a JSON response using dependency inyection.
Render Array with Cache Contexts
How to add cache contexts to a render array so that it varies by the user roles.
Render Array with Cache Metadata
How to add cache contexts, tags, and max-age to a render array.
Returning a Cacheable JSON Response from a Controller
Returns a cacheable JSON response with custom cache metadata (tags, contexts, and max‑age).