├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── example ├── basic.php ├── cacheariumprobe.png └── debugprobe.php ├── phpunit.xml ├── src ├── Backend │ ├── CacheAPC.php │ ├── CacheFilesystem.php │ ├── CacheMemcached.php │ ├── CacheNull.php │ ├── CacheRAM.php │ └── external │ │ ├── Lite.php │ │ └── Timed.php ├── Cache.php ├── CacheAbstract.php ├── CacheData.php ├── CacheKey.php ├── CacheLogEnum.php ├── Cached.php ├── CachedObject.php └── Exceptions │ ├── CacheInvalidBackendException.php │ ├── CacheInvalidDataException.php │ ├── CacheInvalidParameterException.php │ ├── CacheKeyClashException.php │ ├── CacheStoreFailure.php │ ├── CacheUnsupportedOperation.php │ └── NotCachedException.php └── test ├── CacheBasicTest.php ├── CacheCallbackTest.php ├── CacheDataTest.php ├── CacheInterfaceTest.php ├── CacheKeyTest.php ├── CacheLogEnumTest.php ├── CacheMemcachedTest.php ├── CacheNullTest.php ├── CacheRamTest.php ├── CacheStartEndTest.php └── CacheTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/composer.json -------------------------------------------------------------------------------- /example/basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/example/basic.php -------------------------------------------------------------------------------- /example/cacheariumprobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/example/cacheariumprobe.png -------------------------------------------------------------------------------- /example/debugprobe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/example/debugprobe.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Backend/CacheAPC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/Backend/CacheAPC.php -------------------------------------------------------------------------------- /src/Backend/CacheFilesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/Backend/CacheFilesystem.php -------------------------------------------------------------------------------- /src/Backend/CacheMemcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/Backend/CacheMemcached.php -------------------------------------------------------------------------------- /src/Backend/CacheNull.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/Backend/CacheNull.php -------------------------------------------------------------------------------- /src/Backend/CacheRAM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/Backend/CacheRAM.php -------------------------------------------------------------------------------- /src/Backend/external/Lite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/Backend/external/Lite.php -------------------------------------------------------------------------------- /src/Backend/external/Timed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/Backend/external/Timed.php -------------------------------------------------------------------------------- /src/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/Cache.php -------------------------------------------------------------------------------- /src/CacheAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/CacheAbstract.php -------------------------------------------------------------------------------- /src/CacheData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/CacheData.php -------------------------------------------------------------------------------- /src/CacheKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/CacheKey.php -------------------------------------------------------------------------------- /src/CacheLogEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/CacheLogEnum.php -------------------------------------------------------------------------------- /src/Cached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/Cached.php -------------------------------------------------------------------------------- /src/CachedObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/CachedObject.php -------------------------------------------------------------------------------- /src/Exceptions/CacheInvalidBackendException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/Exceptions/CacheInvalidBackendException.php -------------------------------------------------------------------------------- /src/Exceptions/CacheInvalidDataException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/Exceptions/CacheInvalidDataException.php -------------------------------------------------------------------------------- /src/Exceptions/CacheInvalidParameterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/Exceptions/CacheInvalidParameterException.php -------------------------------------------------------------------------------- /src/Exceptions/CacheKeyClashException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/Exceptions/CacheKeyClashException.php -------------------------------------------------------------------------------- /src/Exceptions/CacheStoreFailure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/Exceptions/CacheStoreFailure.php -------------------------------------------------------------------------------- /src/Exceptions/CacheUnsupportedOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/Exceptions/CacheUnsupportedOperation.php -------------------------------------------------------------------------------- /src/Exceptions/NotCachedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/src/Exceptions/NotCachedException.php -------------------------------------------------------------------------------- /test/CacheBasicTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/test/CacheBasicTest.php -------------------------------------------------------------------------------- /test/CacheCallbackTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/test/CacheCallbackTest.php -------------------------------------------------------------------------------- /test/CacheDataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/test/CacheDataTest.php -------------------------------------------------------------------------------- /test/CacheInterfaceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/test/CacheInterfaceTest.php -------------------------------------------------------------------------------- /test/CacheKeyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/test/CacheKeyTest.php -------------------------------------------------------------------------------- /test/CacheLogEnumTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/test/CacheLogEnumTest.php -------------------------------------------------------------------------------- /test/CacheMemcachedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/test/CacheMemcachedTest.php -------------------------------------------------------------------------------- /test/CacheNullTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/test/CacheNullTest.php -------------------------------------------------------------------------------- /test/CacheRamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/test/CacheRamTest.php -------------------------------------------------------------------------------- /test/CacheStartEndTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/test/CacheStartEndTest.php -------------------------------------------------------------------------------- /test/CacheTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Corollarium/cachearium/HEAD/test/CacheTest.php --------------------------------------------------------------------------------