Skip to content

Repository files navigation

Cache

Caching library with driver abstraction.

https://travis-ci.com/kuria/cache.svg?branch=master
  • entry operations: has, add, set, get, delete
  • multiple-entry operations: getting, setting, adding, deleting
  • listing, filtering, cleanup (requires driver support)
  • TTL expiration
  • key prefixing / namespacing
  • stored and retrieved values can be manipulated via events
  • PSR-6 cache adapter
  • PSR-16 simple cache wrapper
  • multiple built-in driver implementations
  • PHP 7.1+
DriverMulti-readMulti-writeMulti-deleteFilterableManual cleanupRequired extension
FilesystemDrivernononoyesyesnone
ApcuDriveryesyesyesyesnoAPCu
MemcachedDriveryespartialyesnonoMemcached
RedisDriveryesyesyesyesnoPhpRedis
MemoryDriveryesyesyesyesyesnone
BlackHoleDrivernononoyesnonone

Note

The cache will emulate multi-read/write/delete if the driver doesn't support it natively.

Store cache entries in the given directory as binary files.

<?phpuseKuria\Cache\Cache;
useKuria\Cache\Driver\Filesystem\FilesystemDriver;
$driver = newFilesystemDriver(__DIR__ . '/cache');
$cache = newCache($driver);

Note

If needed, $cache->cleanup() may to be called to physically remove expired entries from the filesystem. This is best done periodically via CRON or a similar mechanism.

Storing cache entries as PHP files

It may be beneficial to store cache entries as actual PHP files (instead of binary ones), so that they may be picked up by opcode caches (e.g. opcache) to increase performance.

<?phpuseKuria\Cache\Cache;
useKuria\Cache\Driver\Filesystem\Entry\File\PhpFileFormat;
useKuria\Cache\Driver\Filesystem\FilesystemDriver;
$driver = newFilesystemDriver(
__DIR__ . '/cache',
FilesystemDriver::createEntryFactory(newPhpFileFormat())
);
$cache = newCache($driver);

Tip

When caching large amounts of data this way, make sure the opcode cache is configured appropriately.

For opcache, the most relevant settings are opcache.memory_consumption and opcache.max_accelerated_files.

Warning

To take full advantage of opcode caching, PhpFileFormat uses var_export() instead of serialize(). Objects can be stored in the cache only if they implement the __set_state() method.

Store cache entries using APCu.

<?phpuseKuria\Cache\Cache;
useKuria\Cache\Driver\Apcu\ApcuDriver;
$cache = newCache(newApcuDriver());

Store cache entries using Memcached.

<?phpuseKuria\Cache\Cache;
useKuria\Cache\Driver\Memcached\MemcachedDriver;
$memcached = new \Memcached();
$memcached->addServer('localhost', 11211);
$cache = newCache(newMemcachedDriver($memcached));

Store cache entries using PhpRedis.

<?phpuseKuria\Cache\Cache;
useKuria\Cache\Driver\Redis\RedisDriver;
$redis = new \Redis();
$redis->connect('localhost', 6380); // might return FALSE..$cache = newCache(newRedisDriver($redis));

Store cache entries in memory.

These entries are only available for the duration of the script and aren't shared between threads.

<?phpuseKuria\Cache\Cache;
useKuria\Cache\Driver\Memory\MemoryDriver;
$cache = newCache(newMemoryDriver());

Note

Expired entries aren't purged from memory until an attempt to access them is made. $cache->cleanup() may be called to purge all expired entries immediately.

Stored entries are discarded immediately. Useful for testing or debugging.

<?phpuseKuria\Cache\Cache;
useKuria\Cache\Driver\BlackHole\BlackHoleDriver;
$cache = newCache(newBlackHoleDriver());

The setPefix() method defines a prefix that will be applied to all keys before they are passed to the underlying driver implementation.

The prefix can be an empty string to disable this functionality.

<?php$cache->setPrefix('prefix_');

The getNamespace() method returns a cache instance that applies a prefix to all keys before passing them to the original cache.

<?php$fooCache = $cache->getNamespace('foo.');
$fooCache->get('bar'); // reads foo.bar$fooCache->delete('baz'); // deletes foo.baz$fooCache->clear(); // deletes foo.* (if the cache is filterable)// etc.

The has() method returns TRUE or FALSE indicating whether the entry exists or not.

<?phpif ($cache->has('key')) {
echo'Entry exist';
} else {
echo'Entry does not exist';
}

Warning

Beware of a possible race-condition between calls to has() and get().

If possible, only call get() and check for a NULL result or use its $exists argument.

The get() method returns the stored value or NULL if the entry does not exist.

<?php$value = $cache->get('key');

If you need to distinguish between a NULL value and a nonexistent entry, use the $exists argument:

<?php$value = $cache->get('key', $exists);
if ($exists) {
// entry was found// $value might be NULL if NULL was stored
} else {
// entry was not found
}

The getMultiple() method returns a key-value map. Nonexistent keys will have a NULL value.

<?php$values = $cache->getMultiple(['foo', 'bar', 'baz']);

If you need to distinguish between NULL values and a nonexistent entries, use the $failedKeys argument:

<?php$values = $cache->getMultiple(['foo', 'bar', 'baz'], $failedKeys);
// $failedKeys will contain a list of keys that were not found

The listKeys() method will return an iterable list of keys in the cache, optionally matching a common prefix.

If the driver doesn't support this operation, an UnsupportedOperationException exception will be thrown. You can check support using the isFilterable() method.

<?phpif ($cache->isFilterable()) {
// list all keysforeach ($cache->listKeys() as$key) {
echo"{$key}\n";
}
// list keys beginning with foo_foreach ($cache->listKeys('foo_') as$key) {
echo"{$key}\n";
}
}

The getIterator() method will return an iterator for all keys and values in the cache. This is a part of the IteratorAggregate interface.

If the driver doesn't support this operation, an UnsupportedOperationException exception will be thrown. You can check support using the isFilterable() method.

Listing all keys and values:

<?phpforeach ($cacheas$key => $value) {
echo$key, ': ';
var_dump($value);
}

Listing keys and values matching a prefix:

<?phpforeach ($cache->getIterator('foo_') as$key => $value) {
echo$key, ': ';
var_dump($value);
}

The add() and set() methods both create an entry in the cache.

The set() method will overwrite an existing entry, but add() will not.

See Allowed value types.

<?php$cache->add('foo', 'foo-value');
$cache->set('bar', 'bar-value');

TTL (time-to-live in seconds) can be specified using the third argument:

<?php$cache->set('foo', 'foo-value', 60);
$cache->add('bar', 'bar-value', 120);

If TTL is NULL, 0 or negative, the entry will not have an expiration time.

The addMultiple() and setMultiple() methods both create multiple entries in the cache.

The setMultiple() method will overwrite any existing entries with the same keys, but addMultiple() will not.

See Allowed value types.

<?php$cache->addMultiple(['foo' => 'foo-value', 'bar' => 'bar-value']);
$cache->setMultiple(['foo' => 'foo-value', 'bar' => 'bar-value']);

TTL (time-to-live in seconds) can be specified using the second argument:

<?php$cache->addMultiple(['foo' => 'foo-value', 'bar' => 'bar-value'], 60);
$cache->setMultiple(['foo' => 'foo-value', 'bar' => 'bar-value'], 120);

If TTL is NULL, 0 or negative, the entries will not have expiration times.

The cached() method tries to read a value from the cache. If it does not exist, it invokes the given callback and caches its return value (even if it is NULL).

<?php$value = $cache->cached('key', 60, function () {
// some expensive operation$result = 123;
return$result;
});

The delete() method deletes a single entry from the cache.

<?phpif ($cache->delete('key')) {
echo'Entry deleted';
}

The deleteMultiple() method deletes multiple entries from the cache.

<?phpif ($cache->deleteMultiple(['foo', 'bar', 'baz'])) {
echo'All entries deleted';
} else {
echo'One or more entries could not be deleted';
}

The filter() method deletes all entries that match the given prefix.

If the driver doesn't support this operation, an UnsupportedOperationException exception will be thrown. You can check support using the isFilterable() method.

<?phpif ($cache->isFilterable()) {
$cache->filter('foo_');
}

The clear() method deletes all entries.

If a cache prefix is set and the cache is filterable, only entries matching that prefix will be cleared.

<?php$cache->clear();

Some cache drivers (e.g. FilesystemDriver) support explicit triggering of the cleanup procedures (removal of expired entries etc).

If the driver doesn't support this operation, an UnsupportedOperationException exception will be thrown. You can check support using the supportsCleanup() method.

<?phpif ($cache->supportsCleanup()) {
$cache->cleanup();
}

All types except for the resource type can be stored in the cache.

Most drivers use standard object serialization.

Emitted when an entry has been read.

The listener is passed the key and value.

<?phpuseKuria\Cache\CacheEvents;
$cache->on(CacheEvents::HIT, function (string$key, $value) {
printf(
"Read key %s from the cache, the value is %s\n",
$key,
var_export($value, true)
);
});

Emitted when an entry has not been found.

The listener is passed the key.

<?phpuseKuria\Cache\CacheEvents;
$cache->on(CacheEvents::MISS, function (string$key) {
echo"The key {$key} was not found in the cache\n";
});

Emitted when an entry is about to be written.

The listener is passed the key, value, TTL and overwrite flag.

<?phpuseKuria\Cache\CacheEvents;
$cache->on(CacheEvents::WRITE, function (string$key, $value, ?int$ttl, bool$overwrite) {
printf(
"Writing key %s to the cache, with TTL = %s, overwrite = %s and value = %s\n",
$key,
var_export($ttl, true),
var_export($overwrite, true),
var_export($value, true)
);
});

Emitted when the underlying driver implementation throws an exception.

The listener is passed the exception object. This can be used for debugging or logging purposes.

<?phpuseKuria\Cache\CacheEvents;
$cache->on(CacheEvents::DRIVER_EXCEPTION, function (\Throwable$e) {
echo'Driver exception: ', $e;
});

The CacheItemPool class is an adapter implementing the Psr\Cache\CacheItemPoolInterface.

To use it, you need to have psr/cache (^1.0) installed.

See http://www.php-fig.org/psr/psr-6/ for more information.

<?phpuseKuria\Cache\Psr\CacheItemPool;
$pool = newCacheItemPool($cache);

Also see Creating a cache instance.

Tip

Count-based auto-commit is supported. Use setAutoCommitCount() to enable it.

The SimpleCache class is a wrapper implementing the Psr\SimpleCache\CacheInterface.

To use it, you need to have psr/simple-cache (^1.0) installed.

See http://www.php-fig.org/psr/psr-16/ for more information.

<?phpuseKuria\Cache\Psr\SimpleCache;
$simpleCache = newSimpleCache($cache);

Also see Creating a cache instance.

About

Caching library with driver abstraction

Topics

Resources

Stars

2 stars

Watchers

1 watching

Forks

Releases

Used by

Contributors

Languages