Download the PHP package phoole/cache without Composer
On this page you can find all versions of the php package phoole/cache. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package cache
cache
Slim and full compatible PSR-16 cache library for PHP
Installation
Install via the composer
utility.
or add the following lines to your composer.json
Features
-
Fully PSR-16 compliant.
-
Support all serializable PHP data types.
-
Extra features:
-
Stampede Protection: Whenever ONE cached object's lifetime is less than a configurable
stampedeGap
time in seconds (60s default), by a configurablestampedePercent
(5% default) percentage, it will be considered stale. It may then trigger generating new cache depend on your decision. This feature is quite useful for reducing a single hot item stampede situation. - Distributed expiration: By setting
distributedPercent
(5% default) to a reasonable percentage, system will store each cache item with its TTL(time to live) a small random fluctuation. This will help avoiding large amount of items expired at the same time.
-
CacheAwareInterface
andCacheAwareTrait
Usage
-
Simple usage
-
Specify the adaptor
- Use with dependency injection
Testing
Dependencies
-
PHP >= 7.2.0
- phoole/base 1.*