summaryrefslogtreecommitdiffstats
path: root/system/libraries/Cache/Cache.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2017-02-21 10:49:02 +0100
committerGitHub <noreply@github.com>2017-02-21 10:49:02 +0100
commit157db44a550b194039b1f3c3a70dc259e8f57d5f (patch)
tree73a0a68e90116a850a2d13a702b875117138dd86 /system/libraries/Cache/Cache.php
parent1f73ffeb551a17563ae238ee90de380a9384b880 (diff)
parent1a66dd27a332797a5b11c0b8e90a579338d64268 (diff)
Merge pull request #5025 from katsew/introduce-apcu-driver
Add APCu driver to CI_Cache
Diffstat (limited to 'system/libraries/Cache/Cache.php')
-rw-r--r--system/libraries/Cache/Cache.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/system/libraries/Cache/Cache.php b/system/libraries/Cache/Cache.php
index 267dffb09..b56f33e74 100644
--- a/system/libraries/Cache/Cache.php
+++ b/system/libraries/Cache/Cache.php
@@ -55,6 +55,7 @@ class CI_Cache extends CI_Driver_Library {
*/
protected $valid_drivers = array(
'apc',
+ 'apcu',
'dummy',
'file',
'memcached',