Name |
Description |
Apc |
APC adapter. Basically just a wrapper over apc_* functions, but in an
exchangeable (KeyValueStore) interface. |
Couchbase |
Couchbase adapter. Basically just a wrapper over \CouchbaseBucket, but in an
exchangeable (KeyValueStore) interface. |
Flysystem |
Flysystem adapter. Data will be written to League\Flysystem\Filesystem. |
Memcached |
Memcached adapter. Basically just a wrapper over \Memcached, but in an
exchangeable (KeyValueStore) interface. |
MemoryStore |
No-storage cache: all values will be "cached" in memory, in a simple PHP
array. Values will only be valid for 1 request: whatever is in memory at the
end of the request just dies. Other requests will start from a blank slate. |
MySQL |
MySQL adapter. Basically just a wrapper over \PDO, but in an exchangeable
(KeyValueStore) interface. |
PostgreSQL |
PostgreSQL adapter. Basically just a wrapper over \PDO, but in an
exchangeable (KeyValueStore) interface. |
Redis |
Redis adapter. Basically just a wrapper over \Redis, but in an exchangeable
(KeyValueStore) interface. |
SQL |
SQL adapter. Basically just a wrapper over \PDO, but in an exchangeable
(KeyValueStore) interface. |
SQLite |
SQLite adapter. Basically just a wrapper over \PDO, but in an exchangeable
(KeyValueStore) interface. |