Blame view
sources/lib/private/memcache/apcu.php
439 Bytes
|
31b7f2792
|
1 2 3 4 5 6 7 8 9 10 11 |
<?php
/**
* Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace OC\Memcache;
class APCu extends APC {
|
|
31b7f2792
|
12 13 14 15 16 17 18 19 20 21 |
static public function isAvailable() {
if (!extension_loaded('apcu')) {
return false;
} elseif (!ini_get('apc.enable_cli') && \OC::$CLI) {
return false;
} else {
return true;
}
}
}
|