blob: 9c14fdfba02cb1eabdec99d177e462d4efacf72a (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
<?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.
*
* @package Elgg.Core
* @subpackage Cache
*/
class ElggStaticVariableCache extends ElggSharedMemoryCache {
/**
* The cache.
*
* @var array
*/
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.
* @warning namespaces of the same name are shared!
*/
function __construct($namespace = 'default') {
$this->setNamespace($namespace);
$this->clear();
}
/**
* Save a key
*
* @param string $key Name
* @param string $data Value
*
* @return boolean
*/
public function save($key, $data) {
$namespace = $this->getNamespace();
ElggStaticVariableCache::$__cache[$namespace][$key] = $data;
return true;
}
/**
* Load a key
*
* @param string $key Name
* @param int $offset Offset
* @param int $limit Limit
*
* @return string
*/
public function load($key, $offset = 0, $limit = null) {
$namespace = $this->getNamespace();
if (isset(ElggStaticVariableCache::$__cache[$namespace][$key])) {
return ElggStaticVariableCache::$__cache[$namespace][$key];
}
return false;
}
/**
* Invalidate a given key.
*
* @param string $key Name
*
* @return bool
*/
public function delete($key) {
$namespace = $this->getNamespace();
unset(ElggStaticVariableCache::$__cache[$namespace][$key]);
return true;
}
/**
* Clears the cache for a particular namespace
*
* @return void
*/
public function clear() {
$namespace = $this->getNamespace();
if (!isset(ElggStaticVariableCache::$__cache)) {
ElggStaticVariableCache::$__cache = array();
}
ElggStaticVariableCache::$__cache[$namespace] = array();
}
}
|