Cache Flashcards
1
Q
Which PSR does Cache-Component follow?
A
PSR-6 & PSR-16
2
Q
Which interfaces/classes does the PSR-6 Cache-Component include?
A
- CacheException
- CacheItemInterface
- CacheItemPoolInterface
- InvalidArgumentException
3
Q
How will a value be set for a cache-item?
A
Within the method “get”
4
Q
How will a value be selected for a cache-item?
A
Within the method “get”
5
Q
What is stampede protection?
A
Protecting cold cache from being written by multiple clients at a time
6
Q
What are the 2 ways of symfony’s stampede protection?
A
- lock
- refresh before expiring
7
Q
Whats the difference between PSR-6 and PSR-16?
A
PSR-16 is the simplified and more performant way of caching, while PSR-6 allows more complex possibilities for caching (e.g. getItem, getDeferred etc.)
8
Q
Which Interfaces / Classes do the cache-contracts (PSR-16) include?
A
- CacheInterface
- ItemInterface