vectorface / cache
Simple cache classes
Installs: 10 343
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 10
Forks: 2
Open Issues: 1
Requires
- php: >=8.0.0
- cheprasov/php-redis-client: ^1.10
- psr/log: ^1.0 || ^2.0 || ^3.0
- psr/simple-cache: ^1.0
Requires (Dev)
- phpunit/phpunit: ^9.0
- squizlabs/php_codesniffer: ^3.0
README
This is a simple cache library. It exposes several caching mechanisms (with different semantics), along with support for adapting to a PSR-16 compatible interface, and atomic counters. Nothing fancy.
Interface
The cache interface exposes get and set methods, which do exactly what you'd expect from a cache:
use Vectorface\Cache\PHPCache; // PHPCache is a trivial array-backed cache. $cache = new PHPCache(); $cache->get("foo"); // null, because we just created this cache. $cache->get("foo", "dflt"); // "dflt"; same as above, but with our own default $cache->set("foo", "bar"); // returns true if set. This cache always succeeds. $cache->get("foo"); // "bar", because we just set it.
The interface supports optional time-to-live (expiry) where supported by the underlying cache type. The interface also provides delete
, clean
, and flush
methods to delete one entry, all expired entries, and all entries (respectively).
Available Implementations
APCCache
: APC or APCu.MCCache
: MemcacheRedisCache
: Redis, using either the phpredis extension or the php-redis-client libraryNullCache
: A blackhole for your dataPHPCache
: Stores values in a local variable, for one script execution only.SQLCache
: Values stored in an SQL table, accessed via PDO.TempFileCache
: Store values in temporary files. Does not support atomic counting.TieredCache
: Layer any of the above caches on top of each other to form a hybrid cache. Does not support atomic counting.
Real-World Use
Why would you want to use this? It makes it almost trivial to switch your underlying cache implementation without any code changes. This can be especially useful for testing.
use Vectorface\Cache\APCCache; use Vectorface\Cache\PHPCache; use Vectorface\Cache\TempFileCache; // Memcache and SQL-based caches also work, but aren't as good as examples. $caches = [new APCCache(), new PHPCache(), new TempFileCache()]; foreach ($caches as $cache) { // Look ma! Same interface! $cache->set('foo', 'bar'); $cache->get('foo'); }
Atomic Counters
A common use of caches are to implement atomic counting, i.e. incrementing or decrementing by some amount. Atomicity is important for reliability in distributed environments to avoid race conditions.
Not all cache implementations in this library support atomic counting, because it either isn't possible or doesn't make sense in that context.
use Vectorface\Cache\APCCache; use Vectorface\Cache\AtomicCounter; $cache = new APCCache(); assert($cache instanceof AtomicCounter); // Can increment and decrement by key, defaults to steps of 1 assert($cache->increment("counter") === 1); assert($cache->increment("counter") === 2); assert($cache->decrement("counter") === 1); // Can step by arbitrary amounts assert($cache->increment("counter", 5) === 6); assert($cache->decrement("counter", 2) === 4);
Tiered Caching
Another particularly useful feature is the ability to stack caches. You can put fast caches in front of successively slower caches, presumably where the fast caches will have less storage and evict items used less often.
use Vectorface\Cache\APCCache; use Vectorface\Cache\MCCache; use Vectorface\Cache\TempFileCache; use Vectorface\Cache\TieredCache; $memcache = new Memcache(); $memcache->addServer("127.0.0.1"); $cache = new TieredCache([ new APCCache(), new MCCache($memcache), new TempFileCache(), ]); $cache->get("foo"); // Tries all caches in sequence until one succeeds. Fails if none succeed. $cache->set("foo", "bar"); // Sets a value in all caches. $cache->get("foo"); // Tries all caches in sequence. The fastest should succeed and return quickly.
PSR-16 Support
If you need interoperability with other tooling that support PSR-16 SimpleCache, you may use the SimpleCacheAdapter
class which can wrap any of the cache implementations in this library.
use Psr\SimpleCache\CacheInterface; use Vectorface\Cache\PHPCache; use Vectorface\Cache\SimpleCacheAdapter; $psr16Cache = new SimpleCacheAdapter(new PHPCache()); assert($psr16Cache instanceof CacheInterface);