├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── composer.json ├── src ├── AbstractCache.php ├── AbstractPdo.php ├── Adapter.php ├── Apc.php ├── Apcu.php ├── Directory.php ├── Exception.php ├── Factory.php ├── Files.php ├── Indexer │ ├── AbstractIndexer.php │ ├── Adapter.php │ └── MemcachedIndexer.php ├── Memcached.php ├── Mongo.php ├── Mongo │ ├── CollectionAdapter.php │ └── DatabaseAdapter.php ├── Pdo │ ├── Mysql.php │ ├── Pgsql.php │ ├── Sql1999.php │ └── Sqlite.php ├── PsrCache │ ├── InvalidArgumentException.php │ ├── Item.php │ ├── Pool.php │ ├── TaggableItem.php │ └── TaggablePool.php ├── Redis.php ├── Runtime.php └── Serializer │ ├── Adapter.php │ ├── Igbinary.php │ ├── Json.php │ ├── Msgpack.php │ ├── None.php │ ├── Php.php │ └── Stringset.php └── tests ├── AbstractCacheTest.php ├── ApcTest.php ├── ApcuTest.php ├── DirectoryTest.php ├── FactoryTest.php ├── FilesTest.php ├── GenericTestCase.php ├── Indexer ├── ApcIndexerTest_OFF.php ├── GenericIndexerTestCase.php └── MemcachedIndexerTest.php ├── MemcachedTest.php ├── MongoTest.php ├── PdoTest.php ├── PsrCache ├── ItemTest.php ├── PoolTest.php ├── TaggableItemTest.php └── TaggablePoolTest.php ├── RedisTest.php ├── RuntimeTest.php ├── Serializer ├── IgbinaryTest.php ├── JsonTest.php ├── MsgpackTest.php ├── NoneTest.php ├── PhpTest.php ├── StringsetTest.php └── TestCase.php ├── TestCase.php └── bin └── travis-init.sh /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/composer.json -------------------------------------------------------------------------------- /src/AbstractCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/AbstractCache.php -------------------------------------------------------------------------------- /src/AbstractPdo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/AbstractPdo.php -------------------------------------------------------------------------------- /src/Adapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Adapter.php -------------------------------------------------------------------------------- /src/Apc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Apc.php -------------------------------------------------------------------------------- /src/Apcu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Apcu.php -------------------------------------------------------------------------------- /src/Directory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Directory.php -------------------------------------------------------------------------------- /src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Exception.php -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Factory.php -------------------------------------------------------------------------------- /src/Files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Files.php -------------------------------------------------------------------------------- /src/Indexer/AbstractIndexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Indexer/AbstractIndexer.php -------------------------------------------------------------------------------- /src/Indexer/Adapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Indexer/Adapter.php -------------------------------------------------------------------------------- /src/Indexer/MemcachedIndexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Indexer/MemcachedIndexer.php -------------------------------------------------------------------------------- /src/Memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Memcached.php -------------------------------------------------------------------------------- /src/Mongo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Mongo.php -------------------------------------------------------------------------------- /src/Mongo/CollectionAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Mongo/CollectionAdapter.php -------------------------------------------------------------------------------- /src/Mongo/DatabaseAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Mongo/DatabaseAdapter.php -------------------------------------------------------------------------------- /src/Pdo/Mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Pdo/Mysql.php -------------------------------------------------------------------------------- /src/Pdo/Pgsql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Pdo/Pgsql.php -------------------------------------------------------------------------------- /src/Pdo/Sql1999.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Pdo/Sql1999.php -------------------------------------------------------------------------------- /src/Pdo/Sqlite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Pdo/Sqlite.php -------------------------------------------------------------------------------- /src/PsrCache/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/PsrCache/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/PsrCache/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/PsrCache/Item.php -------------------------------------------------------------------------------- /src/PsrCache/Pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/PsrCache/Pool.php -------------------------------------------------------------------------------- /src/PsrCache/TaggableItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/PsrCache/TaggableItem.php -------------------------------------------------------------------------------- /src/PsrCache/TaggablePool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/PsrCache/TaggablePool.php -------------------------------------------------------------------------------- /src/Redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Redis.php -------------------------------------------------------------------------------- /src/Runtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Runtime.php -------------------------------------------------------------------------------- /src/Serializer/Adapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Serializer/Adapter.php -------------------------------------------------------------------------------- /src/Serializer/Igbinary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Serializer/Igbinary.php -------------------------------------------------------------------------------- /src/Serializer/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Serializer/Json.php -------------------------------------------------------------------------------- /src/Serializer/Msgpack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Serializer/Msgpack.php -------------------------------------------------------------------------------- /src/Serializer/None.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Serializer/None.php -------------------------------------------------------------------------------- /src/Serializer/Php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Serializer/Php.php -------------------------------------------------------------------------------- /src/Serializer/Stringset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/src/Serializer/Stringset.php -------------------------------------------------------------------------------- /tests/AbstractCacheTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/AbstractCacheTest.php -------------------------------------------------------------------------------- /tests/ApcTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/ApcTest.php -------------------------------------------------------------------------------- /tests/ApcuTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/ApcuTest.php -------------------------------------------------------------------------------- /tests/DirectoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/DirectoryTest.php -------------------------------------------------------------------------------- /tests/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/FactoryTest.php -------------------------------------------------------------------------------- /tests/FilesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/FilesTest.php -------------------------------------------------------------------------------- /tests/GenericTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/GenericTestCase.php -------------------------------------------------------------------------------- /tests/Indexer/ApcIndexerTest_OFF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/Indexer/ApcIndexerTest_OFF.php -------------------------------------------------------------------------------- /tests/Indexer/GenericIndexerTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/Indexer/GenericIndexerTestCase.php -------------------------------------------------------------------------------- /tests/Indexer/MemcachedIndexerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/Indexer/MemcachedIndexerTest.php -------------------------------------------------------------------------------- /tests/MemcachedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/MemcachedTest.php -------------------------------------------------------------------------------- /tests/MongoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/MongoTest.php -------------------------------------------------------------------------------- /tests/PdoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/PdoTest.php -------------------------------------------------------------------------------- /tests/PsrCache/ItemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/PsrCache/ItemTest.php -------------------------------------------------------------------------------- /tests/PsrCache/PoolTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/PsrCache/PoolTest.php -------------------------------------------------------------------------------- /tests/PsrCache/TaggableItemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/PsrCache/TaggableItemTest.php -------------------------------------------------------------------------------- /tests/PsrCache/TaggablePoolTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/PsrCache/TaggablePoolTest.php -------------------------------------------------------------------------------- /tests/RedisTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/RedisTest.php -------------------------------------------------------------------------------- /tests/RuntimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/RuntimeTest.php -------------------------------------------------------------------------------- /tests/Serializer/IgbinaryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/Serializer/IgbinaryTest.php -------------------------------------------------------------------------------- /tests/Serializer/JsonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/Serializer/JsonTest.php -------------------------------------------------------------------------------- /tests/Serializer/MsgpackTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/Serializer/MsgpackTest.php -------------------------------------------------------------------------------- /tests/Serializer/NoneTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/Serializer/NoneTest.php -------------------------------------------------------------------------------- /tests/Serializer/PhpTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/Serializer/PhpTest.php -------------------------------------------------------------------------------- /tests/Serializer/StringsetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/Serializer/StringsetTest.php -------------------------------------------------------------------------------- /tests/Serializer/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/Serializer/TestCase.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/bin/travis-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apix/cache/HEAD/tests/bin/travis-init.sh --------------------------------------------------------------------------------