Update README to include apcu
This commit is contained in:
parent
8c81d94034
commit
45d5465d6b
@ -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
|
Loading…
Reference in New Issue
Block a user