cache
cache copied to clipboard
A thin PSR-6 cache wrapper with a generic interface to various caching backends emphasising cache tagging and indexing.
## Bug Report `Uncaught Apix\Cache\PsrCache\InvalidArgumentException: Item key ('test:string') is invalid` ### Code snippet ```php use Apix\Cache; $backend = new \Redis(); $backend->connect('localhost'); $backend->select(1); $cache = Cache\Factory::getPool($backend); $item = $cache->getItem('test:string'); ``` returns:...
Feature Proposal ### Description Add PHP 7.4 to the Travis build and make any code changes necessary to run on PHP 7.4 (while continuing to support currently supported versions of...
`mongodb` extension for HHVM does not currently work with Travis build. See: https://travis-ci.org/frqnck/apix-cache/jobs/171382299 Affects: HHVM Version: 3.6.6 Extension: mongodb
> Do you have thoughts about adding a standard "increment" function for the AbstractCache.php in apix-cache? I know that both Redis and Memcached have this function, and its something I...