Download the PHP package nickolasburr/ocache without Composer
On this page you can find all versions of the php package nickolasburr/ocache. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package ocache
ocache
:local:
Description
Virtual object cache for PHP.
Installation
composer require nickolasburr/ocache:^1.0
Examples
...
use function Ocache\cache;
$cache = cache();
$entry = $cache->get('example');
if ($entry === null) {
$entry = new \ArrayIterator(range(0, 10));
$cache->set('example', $entry);
}
...
All versions of ocache with dependencies
PHP Build Version
Package Version
The package nickolasburr/ocache contains the following files
Loading the files please wait ....