Download the PHP package maximebf/cachecache without Composer
On this page you can find all versions of the php package maximebf/cachecache. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download maximebf/cachecache
More information about maximebf/cachecache
Files in maximebf/cachecache
Download maximebf/cachecache
More information about maximebf/cachecache
Files in maximebf/cachecache
Vendor maximebf
Package cachecache
Short Description Caching library for PHP5.3
License MIT
Homepage https://github.com/maximebf/CacheCache
Package cachecache
Short Description Caching library for PHP5.3
License MIT
Homepage https://github.com/maximebf/CacheCache
Keywords cache
Please rate this library. Is it a good library?
Informations about the package cachecache
CacheCache
Caching framework for PHP 5.3+
Features:
- Easy retreival and storing of key, value pairs using the many available methods
- Cache function calls
- Available object wrapper to cache calls to methods
- Pipelines ala Predis (see below)
- Namespaces
- TTL variations to avoid all caches to expire at the same time
- Multiple backends support (apc, file, memcache(d), memory, redis, session)
- Monolog support
- Very well documented
CacheCache features are exposed through a Cache object which itself uses backends to store the data. Multiple instances of Cache objects can be managed using the CacheManager.
Full documentation at http://maximebf.github.com/CacheCache/
Examples:
$cache = new CacheCache\Cache(new CacheCache\Backends\Memory());
if (($foo = $cache->get('foo')) === null) {
$foo = 'bar';
$cache->set('foo', $foo);
}
if (!$cache->start('foo')) {
echo "bar\n";
$cache->end();
}
$cache->call('sleep', array(2));
$cache->call('sleep', array(2)); // won't sleep!
$r = $cache->pipeline(function($pipe) {
$pipe->set('foo', 'bar');
$pipe->set('bar', 'foo');
$pipe->get('foo');
$pipe->set('foo', 'foobar');
$pipe->get('foo');
});
More examples in examples/
All versions of cachecache with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.3.0
The package maximebf/cachecache contains the following files
Loading the files please wait ...
