summaryrefslogtreecommitdiffstats
path: root/lib/private/memcache/apcu.php
blob: dac0f5f208aaa61f7d56668da870f8dceebad927 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?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 {
	public function clear($prefix = '') {
		$ns = $this->getNamespace() . $prefix;
		$ns = preg_quote($ns, '/');
		$iter = new \APCIterator('user', '/^'.$ns.'/');
		return apc_delete($iter);
	}

	static public function isAvailable() {
		if (!extension_loaded('apcu')) {
			return false;
		} elseif (!ini_get('apc.enable_cli') && \OC::$CLI) {
			return false;
		} else {
			return true;
		}
	}
}