Symfony Cache reference
8 May 2023 (Updated 8 May 2023)
In a nutshell
Symfony’s Cache component helps you implement caching in your web applications.
This is how you’d typically use the Cache component:
Pools: Group of cache items
A pool is a group of cache items under a namespace. In your code, you’ll use a service to interact with each pool.
For example, you might choose to group your cache items in the following pools:
- Images: For caching files.
- Users: For caching user DB records.
- Secrets: For caching AWS secrets.
Default pools
Two pools are enabled by default:
cache.app
: Used in your application code.cache.system
: Used for things like serializer, annotations, and validations.
These are configured in config/packages/cache.yaml
:
See all available cache pools
Clear a pool
Adapters
A cache adapter is a class that implements the AbstractAdapter
interface allowing you to manage your caching using storage systems like Memcached or Redis.
The Cache component offers several pre-configured adapters:
- cache.adapter.apcu
- cache.adapter.array
- cache.adapter.filesystem
- cache.adapter.memcached
- cache.adapter.pdo
- cache.adapter.psr6
- cache.adapter.redis
- cache.adapter.redis_tag_aware (Redis adapter optimized to work with tags)
Sources/links
Tagged:
Symfony
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment