sbsedv / memory-cache
In-Memory Psr-6 cache implementation.
Installs: 187
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/sbsedv/memory-cache
Requires
- php: >=8.0
- psr/cache: ^2.0|^3.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.1
- phpunit/phpunit: ^9.0
Provides
- psr/cache-implementation: 2.0|3.0
README
Psr-6 compliant In-Memory cache implementation using an array as storage.
This implementation is usefull for testing purposes and per-request caching.
Because the library internally stores its data in an array, all data is lost after the php process is terminated (most likely when your request finishes).