Update README to include apcu

This commit is contained in:
Timothy Warren 2017-01-17 12:36:34 -05:00
parent 8c81d94034
commit 45d5465d6b
1 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@ A Caching library implementing the PSR-6 interface for several common cache
backends backends
## Cache Backends ## Cache Backends
* Apcu
* Memcache * Memcache
* Memcached * Memcached
* Redis * Redis
@ -42,7 +43,7 @@ structure is like so:
```php ```php
<?php <?php
$config = [ $config = [
'driver' => 'null', // null, redis, memcache, memcached 'driver' => 'null', // null, apcu, redis, memcache, memcached
'connection' => [ 'connection' => [
// driver setup, see below for the structure for each // driver setup, see below for the structure for each
// driver // driver
@ -70,5 +71,5 @@ $config['connection'] = [
Redis: Redis:
See [Predis](https://github.com/nrk/predis#connecting-to-redis) documentation. An empty array will connect to localhost on port 6379. See [Predis](https://github.com/nrk/predis#connecting-to-redis) documentation. An empty array will connect to localhost on port 6379.
Null: Null, Apcu:
No connection parameters No connection parameters