Cache component
Includes 2 approaches
Cache contracts: cache values based on recomputation callbacks
PSR-6 caching: a generic cache system, which involves cache pools annd cahce itmes
Cache contracts
All adapters support the Cache Contracts. They contain only two methods: get()
and delete()
. There's no set()
method because the get()
method both gets and sets the cache values.
Cache stampede
When lots of users request data from a cache at the same time, right after it expires, it can cause a rush of work (a "stampede") for the server as it tries to recreate the data. This can slow down the server. To prevent this, there are two solutions:
Locking: This is like saying only one person can update the cache at a time. This way, when the cache data expires, only one server process is allowed to make new data, and others have to wait. This is already set up for you, so you don't need to do anything extra.
Early Recompute with Probabilistic Early Expiration: Instead of waiting for the cache data to expire, it's sometimes recreated earlier. This is done randomly for some users while others still get the old cache data.
Available cache adapters: apcy, array, memcahcd, pdo, redis…
Generic Caching (PSR-6)
Item
A single unit of information stored as a key/value pair
Pool
A logical repository of cache items. All cache operations (saving items, looking for items, etc.) are performed through the pool. Applications can define as many pools as needed.
Adapter
It implements the actual caching mechanism to store the information in the filesystem, in a database, etc.
Basic usage
Cache invalidation
Using cache tags
Each tag is a plain string identifier that you can use at any time to trigger the removal of all items associated with this tag.