eskirex / cache
Eskirex Cache Component
1.0.0
2017-12-19 23:22 UTC
Requires
- php: ^7.1.3
- eskirex/dotify: ^1.0
This package is not auto-updated.
Last update: 2025-04-13 08:27:26 UTC
README
Hello. This is Cache component.
Examples
<?php use Eskirex\Component\Cache\VariableCache; require __DIR__ . '/vendor/autoload.php'; $cacheNode1 = new VariableCache('foo_bar_baz'); $cacheNode1->set('foo', [ 'bar' => 'baz' ]); print_r($cacheNode1->get('foo')); // Array // ( // [bar] => baz // ) $cacheNode2 = new VariableCache('foo_bar_baz'); print_r($cacheNode2->get('foo')); // Array // ( // [bar] => baz // )
License
MIT