-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMemcacheTagging.class.php
More file actions
471 lines (422 loc) · 11.9 KB
/
MemcacheTagging.class.php
File metadata and controls
471 lines (422 loc) · 11.9 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
<?php
/**
* A Memcached client tagging supported.
* @author massat <mail@massat.jp>
* @package MemcachedTagging
* @link http://github.com/massat/MemcacheTagging
*/
class MemcacheTagging
{
const SEPARATOR = ':';
const KEY_INDICATOR_VALUE = 'v';
const KEY_INDICATOR_META = 'm';
const KEY_INDICATOR_TAG = 't';
private static $defaultLifetime = 3600;
/**
* @var Memcache
*/
private $cache;
private $namespace;
private $lifetime;
private $valueKeyPrefix;
private $metaKeyPrefix;
private $tagKeyPrefix;
/**
* returns an instance
*
* available option
* * lifetime
* * namespace
* * servers
* * host
* * port
* * persistent
* * weight
*
* @param array $options
* @return MemcacheTagging
*/
public static function getInstance(array $options = array())
{
return new MemcacheTagging($options);
}
/**
* saves a value in the cache with given key and tags
*
* @param string $key
* @param mixed $value
* @param array $tags
* @param int $lifetime
*/
public function set($key, $value, array $tags = array(), $lifetime = null)
{
$lifetime = is_null($lifetime) ? $this->lifetime : $lifetime;
$expire = is_null($lifetime) ? null : time() + $lifetime;
$this->setValue($key, $value, $expire);
$this->setValueMetaData($key, $tags, $expire);
foreach($tags as $tag) {
$this->addTagMetaData($key, $tag);
}
}
/**
* returns a cached content for a given key
*
* @param string $key
* @param mixed $default
* @return mixed
*/
public function get($key, $default = null)
{
return $this->getValue($key, $default);
}
/**
* returns cached values for given keys
*
* @param array $keys
* @return array
*/
public function getMany(array $keys)
{
$values = array();
foreach ($this->cache->get(array_map(create_function('$k', 'return "'.$this->valueKeyPrefix.'".$k;'), $keys)) as $key => $value)
{
$values[str_replace($this->valueKeyPrefix, '', $key)] = $value;
}
return $values;
}
/**
* returns tags associated with a given key
*
* @param string $key
* @return array
*/
public function getTags($key)
{
$tags = array();
if(
($meta = $this->getValueMetaData($key))
&&
isset($meta['tags'])
) {
$tags = $meta['tags'];
}
return $tags;
}
/**
* returns values for a given tag
*
* @param string $tag
* @return array
*/
public function getByTag($tag)
{
$values = array();
if(
($meta = $this->getTagMetaData($tag))
&&
isset($meta['keys'])
&&
$meta['keys']
) {
$values = $this->getMany($meta['keys']);
}
return $values;
}
/**
* returns true if there is a cache for the given key.
*
* @param string $key
* @return boolean
*/
public function has($key)
{
return $this->getValue($key, false) !== false;
}
/**
* returns a last modified timestamp for a given key
*
* @param string $key
* @return int|null
*/
public function getLastModified($key)
{
return ($metaData = $this->getValueMetaData($key)) ? $metaData['last_modified'] : null;
}
/**
* returns an expiring timestamp for a given key
*
* @param string $key
* @return int|null
*/
public function getTimeout($key)
{
return ($metaData = $this->getValueMetaData($key)) ? $metaData['expire'] : null;
}
/**
* delete a cached content for a given key
*
* @param string $key
*/
public function delete($key)
{
$tags = $this->getTags($key);
$this->deleteValue($key);
$this->deleteValueMetaData($key);
foreach($tags as $tag) {
$this->removeFromTagMetaData($key, $tag);
}
}
/**
* delete cached values for a given tag
*
* @param string $tag
*/
public function deleteByTag($tag)
{
if($tagMetaData = $this->getTagMetaData($tag)) {
foreach($tagMetaData['keys'] as $key) {
$this->delete($key);
}
}
}
/**
* clear all cached contents
*
* @return boolean
*/
public function flush()
{
return $this->cache->flush();
}
/********************************
* private methods
********************************/
/**
* set a value with key
*
* @param string $key
* @param string $value
* @param int $expire
* @return boolean
*/
private function setValue($key, $value, $expire = null)
{
$valueKey = $this->valueKeyPrefix . $key;
return $this->_set($valueKey, $value, $expire);
}
/**
* set a value-meta-data
*
* @param string $key
* @param array $tags
* @param int $expire
* @return boolean
*/
private function setValueMetaData($key, array $tags = array(), $expire = null)
{
$metaKey = $this->metaKeyPrefix . $key;
$metaData = array(
'last_modified' => time(),
'expire' => $expire,
'tags' => $tags
);
return $this->_set($metaKey, $metaData, $expire);
}
/**
* add a tag-meta-data
*
* @param string $key
* @param string $tag
* @return boolean
*/
private function addTagMetaData($key, $tag)
{
$tagKey = $this->tagKeyPrefix . $tag;
$metaData = $this->getTagMetaData($tag);
if(!in_array($key, $metaData['keys'])) {
$metaData['keys'][] = $key;
return $this->_set($tagKey, $metaData, 0);
}
return false;
}
/**
* get a value with associated key
*
* @param string $key
* @param mixed $default
* @return mixed
*/
private function getValue($key, $default = null)
{
$valueKey = $this->valueKeyPrefix . $key;
return $this->_get($valueKey, $default);
}
/**
* get a value-meta-data associated with key
*
* @param string $key
* @return array
*/
private function getValueMetaData($key)
{
$metaKey = $this->metaKeyPrefix . $key;
return $this->_get($metaKey, array());
}
/**
* get a tag-meta-data
*
* @param string $tag
* @return array
*/
private function getTagMetaData($tag)
{
$tagKey = $this->tagKeyPrefix . $tag;
return $this->_get($tagKey, array('keys' => array()));
}
/**
* delete a value associated with key
*
* @param string $key
* @return boolean
*/
private function deleteValue($key)
{
$valueKey = $this->valueKeyPrefix . $key;
return $this->_delete($valueKey);
}
/**
* delete a value-meta-data associated with key
*
* @param string $key
* @return boolean
*/
private function deleteValueMetaData($key)
{
$metaKey = $this->metaKeyPrefix . $key;
return $this->_delete($metaKey);
}
/**
* delete a tag-meta-data
*
* @param string $tag
* @return boolean
*/
private function deleteTagMetaData($tag)
{
$tagKey = $this->tagKeyPrefix . $tag;
return $this->_delete($tagKey);
}
/**
* remove key from tag-meta-data
*
* @param string $key
* @param string $tag
*/
private function removeFromTagMetaData($key, $tag)
{
$tagKey = $this->tagKeyPrefix . $tag;
$tagMetaData = $this->getTagMetaData($tag);
if(in_array($key, $tagMetaData['keys'])) {
unset($tagMetaData['keys'][$key]);
$this->_set($tagKey, $tagMetaData, 0);
}
}
/**
* wraps Memcache::set
*
* @param string $key
* @param mixed $value
* @param int $expire
* @return boolean
* @link http://www.php.net/manual/ja/function.memcache-set.php
*/
private function _set($key, $value, $expire = null)
{
if(false !== $this->cache->replace($key, $value, null, $expire)) {
return true;
}
return $this->cache->set($key, $value, null, $expire);
}
/**
* wraps Memcache::get
*
* @param mixed $key
* @param mixed $default
* @return mixed
* @link http://www.php.net/manual/ja/function.memcache-get.php
*/
private function _get($key, $default = null)
{
return (false !== ($value = $this->cache->get($key))) ? $value : $default;
}
/**
* wraps Memcache::delete
*
* @param string $key
* @return boolean
* @link http://www.php.net/manual/ja/function.memcache-delete.php
*/
private function _delete($key)
{
return $this->cache->delete($key);
}
/**
* constructor
*
* * available option
* * lifetime
* * namespace
* * servers
* * host
* * port
* * persistent
* * weight
*
* @param array $options
*/
private function __construct(array $options = array())
{
if(!class_exists('Memcache')) {
throw new Exception('Memcache module is not available.');
}
// Memcache instance
$this->cache = new Memcache();
// a guide of the version of Memcache module
$version = method_exists($this->cache, 'addServer') ? 2 : 1;
$this->lifetime = isset($options['lifetime']) ? $options['lifetime'] : self::$defaultLifetime;
$this->namespace = isset($options['namespace']) ? $options['namespace'] : md5(dirname(__FILE__));
$this->valueKeyPrefix = $this->namespace . self::SEPARATOR . self::KEY_INDICATOR_VALUE . self::SEPARATOR;
$this->metaKeyPrefix = $this->namespace . self::SEPARATOR . self::KEY_INDICATOR_META . self::SEPARATOR;
$this->tagKeyPrefix = $this->namespace . self::SEPARATOR . self::KEY_INDICATOR_TAG . self::SEPARATOR;
// register memcached servers
$servers = isset($options['servers'])
? $options['servers']
: array(
array(
'host' => 'localhost',
'port' => 11211,
'persistent' => true
)
);
if(($version < 2) && (count($servers) > 1)) {
throw new Exception('The version of Memcache module is required to be lather than 2.0.0 for multi servers.');
}
foreach($servers as $server)
{
$host = isset($server['host']) ? $server['host'] : 'localhost';
$port = isset($server['port']) ? $server['port'] : 11211;
$persistent = isset($server['persistent']) ? $server['persistent'] : true;
$weight = isset($server['weight']) ? $server['weight'] : 1;
if($version >= 2) {
if(!$this->cache->addServer($host, $port, $persistent, $weight)) {
throw new Exception(sprintf("Can't connect to Memcache Server (%s:%s)", $host, $port));
}
} else {
$method = $persistent ? 'pconnect' : 'connect';
if(!$this->cache->$method($host, $port)) {
throw new Exception(sprintf("Can't connect to Memcache Server (%s:%s)", $host, $port));
}
}
}
}
}