7 * This source file is subject to the new BSD license that is bundled
8 * with this package in the file LICENSE.txt.
9 * It is also available through the world-wide-web at this URL:
10 * http://framework.zend.com/license/new-bsd
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
13 * to license@zend.com so we can send you a copy immediately.
17 * @subpackage Zend_Cache_Backend
18 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
19 * @license http://framework.zend.com/license/new-bsd New BSD License
25 * @see Zend_Cache_Backend_Interface
27 require_once 'Zend/Cache/Backend/ExtendedInterface.php';
30 * @see Zend_Cache_Backend
32 require_once 'Zend/Cache/Backend.php';
37 * @subpackage Zend_Cache_Backend
38 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
39 * @license http://framework.zend.com/license/new-bsd New BSD License
41 class Zend_Cache_Backend_Memcached
extends Zend_Cache_Backend
implements Zend_Cache_Backend_ExtendedInterface
46 const DEFAULT_HOST
= '127.0.0.1';
47 const DEFAULT_PORT
= 11211;
48 const DEFAULT_PERSISTENT
= true;
49 const DEFAULT_WEIGHT
= 1;
50 const DEFAULT_TIMEOUT
= 1;
51 const DEFAULT_RETRY_INTERVAL
= 15;
52 const DEFAULT_STATUS
= true;
53 const DEFAULT_FAILURE_CALLBACK
= null;
58 const TAGS_UNSUPPORTED_BY_CLEAN_OF_MEMCACHED_BACKEND
= 'Zend_Cache_Backend_Memcached::clean() : tags are unsupported by the Memcached backend';
59 const TAGS_UNSUPPORTED_BY_SAVE_OF_MEMCACHED_BACKEND
= 'Zend_Cache_Backend_Memcached::save() : tags are unsupported by the Memcached backend';
64 * =====> (array) servers :
65 * an array of memcached server ; each memcached server is described by an associative array :
66 * 'host' => (string) : the name of the memcached server
67 * 'port' => (int) : the port of the memcached server
68 * 'persistent' => (bool) : use or not persistent connections to this memcached server
69 * 'weight' => (int) : number of buckets to create for this server which in turn control its
70 * probability of it being selected. The probability is relative to the total
71 * weight of all servers.
72 * 'timeout' => (int) : value in seconds which will be used for connecting to the daemon. Think twice
73 * before changing the default value of 1 second - you can lose all the
74 * advantages of caching if your connection is too slow.
75 * 'retry_interval' => (int) : controls how often a failed server will be retried, the default value
76 * is 15 seconds. Setting this parameter to -1 disables automatic retry.
77 * 'status' => (bool) : controls if the server should be flagged as online.
78 * 'failure_callback' => (callback) : Allows the user to specify a callback function to run upon
79 * encountering an error. The callback is run before failover
80 * is attempted. The function takes two parameters, the hostname
81 * and port of the failed server.
83 * =====> (boolean) compression :
84 * true if you want to use on-the-fly compression
86 * =====> (boolean) compatibility :
87 * true if you use old memcache server or extension
89 * @var array available options
91 protected $_options = array(
92 'servers' => array(array(
93 'host' => self
::DEFAULT_HOST
,
94 'port' => self
::DEFAULT_PORT
,
95 'persistent' => self
::DEFAULT_PERSISTENT
,
96 'weight' => self
::DEFAULT_WEIGHT
,
97 'timeout' => self
::DEFAULT_TIMEOUT
,
98 'retry_interval' => self
::DEFAULT_RETRY_INTERVAL
,
99 'status' => self
::DEFAULT_STATUS
,
100 'failure_callback' => self
::DEFAULT_FAILURE_CALLBACK
102 'compression' => false,
103 'compatibility' => false,
109 * @var mixed memcache object
111 protected $_memcache = null;
116 * @param array $options associative array of options
117 * @throws Zend_Cache_Exception
120 public function __construct(array $options = array())
122 if (!extension_loaded('memcache')) {
123 Zend_Cache
::throwException('The memcache extension must be loaded for using this backend !');
125 parent
::__construct($options);
126 if (isset($this->_options
['servers'])) {
127 $value= $this->_options
['servers'];
128 if (isset($value['host'])) {
129 // in this case, $value seems to be a simple associative array (one server only)
130 $value = array(0 => $value); // let's transform it into a classical array of associative arrays
132 $this->setOption('servers', $value);
134 $this->_memcache
= new Memcache
;
135 foreach ($this->_options
['servers'] as $server) {
136 if (!array_key_exists('port', $server)) {
137 $server['port'] = self
::DEFAULT_PORT
;
139 if (!array_key_exists('persistent', $server)) {
140 $server['persistent'] = self
::DEFAULT_PERSISTENT
;
142 if (!array_key_exists('weight', $server)) {
143 $server['weight'] = self
::DEFAULT_WEIGHT
;
145 if (!array_key_exists('timeout', $server)) {
146 $server['timeout'] = self
::DEFAULT_TIMEOUT
;
148 if (!array_key_exists('retry_interval', $server)) {
149 $server['retry_interval'] = self
::DEFAULT_RETRY_INTERVAL
;
151 if (!array_key_exists('status', $server)) {
152 $server['status'] = self
::DEFAULT_STATUS
;
154 if (!array_key_exists('failure_callback', $server)) {
155 $server['failure_callback'] = self
::DEFAULT_FAILURE_CALLBACK
;
157 if ($this->_options
['compatibility']) {
158 // No status for compatibility mode (#ZF-5887)
159 $this->_memcache
->addServer($server['host'], $server['port'], $server['persistent'],
160 $server['weight'], $server['timeout'],
161 $server['retry_interval']);
163 $this->_memcache
->addServer($server['host'], $server['port'], $server['persistent'],
164 $server['weight'], $server['timeout'],
165 $server['retry_interval'],
166 $server['status'], $server['failure_callback']);
172 * Test if a cache is available for the given id and (if yes) return it (false else)
174 * @param string $id Cache id
175 * @param boolean $doNotTestCacheValidity If set to true, the cache validity won't be tested
176 * @return string|false cached datas
178 public function load($id, $doNotTestCacheValidity = false)
180 $tmp = $this->_memcache
->get($id);
181 if (is_array($tmp) && isset($tmp[0])) {
188 * Test if a cache is available or not (for the given id)
190 * @param string $id Cache id
191 * @return mixed|false (a cache is not available) or "last modified" timestamp (int) of the available cache record
193 public function test($id)
195 $tmp = $this->_memcache
->get($id);
196 if (is_array($tmp)) {
203 * Save some string datas into a cache record
205 * Note : $data is always "string" (serialization is done by the
206 * core not by the backend)
208 * @param string $data Datas to cache
209 * @param string $id Cache id
210 * @param array $tags Array of strings, the cache record will be tagged by each string entry
211 * @param int $specificLifetime If != false, set a specific lifetime for this cache record (null => infinite lifetime)
212 * @return boolean True if no problem
214 public function save($data, $id, $tags = array(), $specificLifetime = false)
216 $lifetime = $this->getLifetime($specificLifetime);
217 if ($this->_options
['compression']) {
218 $flag = MEMCACHE_COMPRESSED
;
223 // ZF-8856: using set because add needs a second request if item already exists
224 $result = @$this->_memcache
->set($id, array($data, time(), $lifetime), $flag, $lifetime);
226 if (count($tags) > 0) {
227 $this->_log(self
::TAGS_UNSUPPORTED_BY_SAVE_OF_MEMCACHED_BACKEND
);
234 * Remove a cache record
236 * @param string $id Cache id
237 * @return boolean True if no problem
239 public function remove($id)
241 return $this->_memcache
->delete($id, 0);
245 * Clean some cache records
247 * Available modes are :
248 * 'all' (default) => remove all cache entries ($tags is not used)
249 * 'old' => unsupported
250 * 'matchingTag' => unsupported
251 * 'notMatchingTag' => unsupported
252 * 'matchingAnyTag' => unsupported
254 * @param string $mode Clean mode
255 * @param array $tags Array of tags
256 * @throws Zend_Cache_Exception
257 * @return boolean True if no problem
259 public function clean($mode = Zend_Cache
::CLEANING_MODE_ALL
, $tags = array())
262 case Zend_Cache
::CLEANING_MODE_ALL
:
263 return $this->_memcache
->flush();
265 case Zend_Cache
::CLEANING_MODE_OLD
:
266 $this->_log("Zend_Cache_Backend_Memcached::clean() : CLEANING_MODE_OLD is unsupported by the Memcached backend");
268 case Zend_Cache
::CLEANING_MODE_MATCHING_TAG
:
269 case Zend_Cache
::CLEANING_MODE_NOT_MATCHING_TAG
:
270 case Zend_Cache
::CLEANING_MODE_MATCHING_ANY_TAG
:
271 $this->_log(self
::TAGS_UNSUPPORTED_BY_CLEAN_OF_MEMCACHED_BACKEND
);
274 Zend_Cache
::throwException('Invalid mode for clean() method');
280 * Return true if the automatic cleaning is available for the backend
284 public function isAutomaticCleaningAvailable()
290 * Set the frontend directives
292 * @param array $directives Assoc of directives
293 * @throws Zend_Cache_Exception
296 public function setDirectives($directives)
298 parent
::setDirectives($directives);
299 $lifetime = $this->getLifetime(false);
300 if ($lifetime > 2592000) {
301 // #ZF-3490 : For the memcached backend, there is a lifetime limit of 30 days (2592000 seconds)
302 $this->_log('memcached backend has a limit of 30 days (2592000 seconds) for the lifetime');
304 if ($lifetime === null) {
305 // #ZF-4614 : we tranform null to zero to get the maximal lifetime
306 parent
::setDirectives(array('lifetime' => 0));
311 * Return an array of stored cache ids
313 * @return array array of stored cache ids (string)
315 public function getIds()
317 $this->_log("Zend_Cache_Backend_Memcached::save() : getting the list of cache ids is unsupported by the Memcache backend");
322 * Return an array of stored tags
324 * @return array array of stored tags (string)
326 public function getTags()
328 $this->_log(self
::TAGS_UNSUPPORTED_BY_SAVE_OF_MEMCACHED_BACKEND
);
333 * Return an array of stored cache ids which match given tags
335 * In case of multiple tags, a logical AND is made between tags
337 * @param array $tags array of tags
338 * @return array array of matching cache ids (string)
340 public function getIdsMatchingTags($tags = array())
342 $this->_log(self
::TAGS_UNSUPPORTED_BY_SAVE_OF_MEMCACHED_BACKEND
);
347 * Return an array of stored cache ids which don't match given tags
349 * In case of multiple tags, a logical OR is made between tags
351 * @param array $tags array of tags
352 * @return array array of not matching cache ids (string)
354 public function getIdsNotMatchingTags($tags = array())
356 $this->_log(self
::TAGS_UNSUPPORTED_BY_SAVE_OF_MEMCACHED_BACKEND
);
361 * Return an array of stored cache ids which match any given tags
363 * In case of multiple tags, a logical AND is made between tags
365 * @param array $tags array of tags
366 * @return array array of any matching cache ids (string)
368 public function getIdsMatchingAnyTags($tags = array())
370 $this->_log(self
::TAGS_UNSUPPORTED_BY_SAVE_OF_MEMCACHED_BACKEND
);
375 * Return the filling percentage of the backend storage
377 * @throws Zend_Cache_Exception
378 * @return int integer between 0 and 100
380 public function getFillingPercentage()
382 $mems = $this->_memcache
->getExtendedStats();
386 foreach ($mems as $key => $mem) {
387 if ($mem === false) {
388 $this->_log('can\'t get stat from ' . $key);
392 $eachSize = $mem['limit_maxbytes'];
393 $eachUsed = $mem['bytes'];
394 if ($eachUsed > $eachSize) {
395 $eachUsed = $eachSize;
398 $memSize +
= $eachSize;
399 $memUsed +
= $eachUsed;
402 if ($memSize === null ||
$memUsed === null) {
403 Zend_Cache
::throwException('Can\'t get filling percentage');
406 return ((int) (100. * ($memUsed / $memSize)));
410 * Return an array of metadatas for the given cache id
412 * The array must include these keys :
413 * - expire : the expire timestamp
414 * - tags : a string array of tags
415 * - mtime : timestamp of last modification time
417 * @param string $id cache id
418 * @return array array of metadatas (false if the cache id is not found)
420 public function getMetadatas($id)
422 $tmp = $this->_memcache
->get($id);
423 if (is_array($tmp)) {
426 if (!isset($tmp[2])) {
427 // because this record is only with 1.7 release
428 // if old cache records are still there...
433 'expire' => $mtime +
$lifetime,
442 * Give (if possible) an extra lifetime to the given cache id
444 * @param string $id cache id
445 * @param int $extraLifetime
446 * @return boolean true if ok
448 public function touch($id, $extraLifetime)
450 if ($this->_options
['compression']) {
451 $flag = MEMCACHE_COMPRESSED
;
455 $tmp = $this->_memcache
->get($id);
456 if (is_array($tmp)) {
459 if (!isset($tmp[2])) {
460 // because this record is only with 1.7 release
461 // if old cache records are still there...
465 $newLifetime = $lifetime - (time() - $mtime) +
$extraLifetime;
466 if ($newLifetime <=0) {
469 // #ZF-5702 : we try replace() first becase set() seems to be slower
470 if (!($result = $this->_memcache
->replace($id, array($data, time(), $newLifetime), $flag, $newLifetime))) {
471 $result = $this->_memcache
->set($id, array($data, time(), $newLifetime), $flag, $newLifetime);
479 * Return an associative array of capabilities (booleans) of the backend
481 * The array must include these keys :
482 * - automatic_cleaning (is automating cleaning necessary)
483 * - tags (are tags supported)
484 * - expired_read (is it possible to read expired cache records
485 * (for doNotTestCacheValidity option for example))
486 * - priority does the backend deal with priority when saving
487 * - infinite_lifetime (is infinite lifetime can work with this backend)
488 * - get_list (is it possible to get the list of cache ids and the complete list of tags)
490 * @return array associative of with capabilities
492 public function getCapabilities()
495 'automatic_cleaning' => false,
497 'expired_read' => false,
499 'infinite_lifetime' => false,