maartengdev / cache-drivers
Cache all data using different drivers
1.2
2016-10-22 13:21 UTC
Requires
- phpunit/phpunit: ^5.5
- satooshi/php-coveralls: ^1.0
This package is not auto-updated.
Last update: 2025-03-29 22:17:19 UTC
README
Cache Drivers
An easy to use php caching library.
Usage
Basic Usage
$dir = $_SERVER['DOCUMENT_ROOT'] .'/cache/'; $expireTime = 30; $driver = new LocalDriver($dir); $cache = new Cache($driver, $expireTime); $key = 'HelloWorld'; // Check if cache entry exists $cacheHasKey = $cache->has($key); // Create new cache entry $cache->store($key, 'Hello World Cache Drivers'); // Get cache entry $cacheEntry = $cache->get($key); // result: "Hello World Cache Drivers"
Check for cache entry with closure
$dir = $_SERVER['DOCUMENT_ROOT'] .'/cache/'; $drive = new LocalDriver($dir); $cache = new Cache($drive,30); function myFunction(Cache $cache){ $key = 'HelloWorld'; $cacheEntry = $cache->has($key, function ($cache) use ($key) { return $cache->get($key); }); if ($cacheEntry) { return $cacheEntry; } $cache->store($key, 'Hello World!'); return $cache->get($key); } myFunction($cache); // result: "Hello World!"
Licence
MIT