blob: 5ace37ddfc167b1c83bf460544c8633a3113fb0c (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
<?php
/**
* ElggStaticVariableCache
* Dummy cache which stores values in a static array. Using this makes future replacements to other caching back
* ends (eg memcache) much easier.
*
* @author Curverider Ltd <info@elgg.com>
* @package Elgg
* @subpackage API
*/
class ElggStaticVariableCache extends ElggSharedMemoryCache {
/**
* The cache.
*
* @var unknown_type
*/
private static $__cache;
/**
* Create the variable cache.
*
* This function creates a variable cache in a static variable in memory, optionally with a given namespace (to avoid overlap).
*
* @param string $namespace The namespace for this cache to write to - note, namespaces of the same name are shared!
*/
function __construct($namespace = 'default') {
$this->setNamespace($namespace);
$this->clear();
}
public function save($key, $data) {
$namespace = $this->getNamespace();
ElggStaticVariableCache::$__cache[$namespace][$key] = $data;
return true;
}
public function load($key, $offset = 0, $limit = null) {
$namespace = $this->getNamespace();
if (isset(ElggStaticVariableCache::$__cache[$namespace][$key])) {
return ElggStaticVariableCache::$__cache[$namespace][$key];
}
return false;
}
public function delete($key) {
$namespace = $this->getNamespace();
unset(ElggStaticVariableCache::$__cache[$namespace][$key]);
return true;
}
public function clear() {
$namespace = $this->getNamespace();
if (!isset(ElggStaticVariableCache::$__cache)) {
ElggStaticVariableCache::$__cache = array();
}
ElggStaticVariableCache::$__cache[$namespace] = array();
}
}
|