| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | /** | 
					
						
							|  |  |  |  * CodeIgniter | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  |  * An open source application development framework for PHP | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  |  * This content is released under the MIT License (MIT) | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  |  * Copyright (c) 2014 - 2019, British Columbia Institute of Technology | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a copy | 
					
						
							|  |  |  |  * of this software and associated documentation files (the "Software"), to deal | 
					
						
							|  |  |  |  * in the Software without restriction, including without limitation the rights | 
					
						
							|  |  |  |  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
					
						
							|  |  |  |  * copies of the Software, and to permit persons to whom the Software is | 
					
						
							|  |  |  |  * furnished to do so, subject to the following conditions: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The above copyright notice and this permission notice shall be included in | 
					
						
							|  |  |  |  * all copies or substantial portions of the Software. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | 
					
						
							|  |  |  |  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
					
						
							|  |  |  |  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
					
						
							|  |  |  |  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
					
						
							|  |  |  |  * THE SOFTWARE. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @package	CodeIgniter | 
					
						
							|  |  |  |  * @author	EllisLab Dev Team | 
					
						
							|  |  |  |  * @copyright	Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/) | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  |  * @copyright	Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/) | 
					
						
							|  |  |  |  * @license	https://opensource.org/licenses/MIT	MIT License | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  |  * @link	https://codeigniter.com | 
					
						
							|  |  |  |  * @since	Version 2.0 | 
					
						
							|  |  |  |  * @filesource | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | defined('BASEPATH') OR exit('No direct script access allowed'); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  |  * CodeIgniter Memcached Caching Class | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * @package		CodeIgniter | 
					
						
							|  |  |  |  * @subpackage	Libraries | 
					
						
							|  |  |  |  * @category	Core | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  |  * @author		EllisLab Dev Team | 
					
						
							|  |  |  |  * @link | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | class CI_Cache_memcached extends CI_Driver { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Holds the memcached object | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @var object | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected $_memcached; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Memcached configuration | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @var array | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	protected $_config = array( | 
					
						
							|  |  |  | 		'default' => array( | 
					
						
							|  |  |  | 			'host'		=> '127.0.0.1', | 
					
						
							|  |  |  | 			'port'		=> 11211, | 
					
						
							|  |  |  | 			'weight'	=> 1 | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 	); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// ------------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * Class constructor | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * Setup Memcache(d) | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return	void | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	public function __construct() | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		// Try to load memcached server info from the config file.
 | 
					
						
							|  |  |  | 		$CI =& get_instance(); | 
					
						
							|  |  |  | 		$defaults = $this->_config['default']; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if ($CI->config->load('memcached', TRUE, TRUE)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			$this->_config = $CI->config->config['memcached']; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if (class_exists('Memcached', FALSE)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			$this->_memcached = new Memcached(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		elseif (class_exists('Memcache', FALSE)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			$this->_memcached = new Memcache(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			log_message('error', 'Cache: Failed to create Memcache(d) object; extension not loaded?'); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  | 		foreach ($this->_config as $cache_name => $cache_server) | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  | 			if ( ! isset($cache_server['hostname'])) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				log_message('debug', 'Cache: Memcache(d) configuration "'.$cache_name.'" doesn\'t include a hostname; ignoring.'); | 
					
						
							|  |  |  | 				continue; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			elseif ($cache_server['hostname'][0] === '/') | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				$cache_server['port'] = 0; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			elseif (empty($cache_server['port'])) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				$cache_server['port'] = $defaults['port']; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			isset($cache_server['weight']) OR $cache_server['weight'] = $defaults['weight']; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if ($this->_memcached instanceof Memcache) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				// Third parameter is persistence and defaults to TRUE.
 | 
					
						
							|  |  |  | 				$this->_memcached->addServer( | 
					
						
							|  |  |  | 					$cache_server['hostname'], | 
					
						
							|  |  |  | 					$cache_server['port'], | 
					
						
							|  |  |  | 					TRUE, | 
					
						
							|  |  |  | 					$cache_server['weight'] | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 				); | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			elseif ($this->_memcached instanceof Memcached) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				$this->_memcached->addServer( | 
					
						
							|  |  |  | 					$cache_server['hostname'], | 
					
						
							|  |  |  | 					$cache_server['port'], | 
					
						
							|  |  |  | 					$cache_server['weight'] | 
					
						
							|  |  |  | 				); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	// ------------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Fetch from cache | 
					
						
							|  |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @param	string	$id	Cache ID | 
					
						
							|  |  |  | 	 * @return	mixed	Data on success, FALSE on failure | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	public function get($id) | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		$data = $this->_memcached->get($id); | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return is_array($data) ? $data[0] : $data; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// ------------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Save | 
					
						
							|  |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @param	string	$id	Cache ID | 
					
						
							|  |  |  | 	 * @param	mixed	$data	Data being cached | 
					
						
							|  |  |  | 	 * @param	int	$ttl	Time to live | 
					
						
							|  |  |  | 	 * @param	bool	$raw	Whether to store the raw value | 
					
						
							|  |  |  | 	 * @return	bool	TRUE on success, FALSE on failure | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	public function save($id, $data, $ttl = 60, $raw = FALSE) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if ($raw !== TRUE) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			$data = array($data, time(), $ttl); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if ($this->_memcached instanceof Memcached) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			return $this->_memcached->set($id, $data, $ttl); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		elseif ($this->_memcached instanceof Memcache) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			return $this->_memcached->set($id, $data, 0, $ttl); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return FALSE; | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// ------------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * Delete from Cache | 
					
						
							|  |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @param	mixed	$id	key to be deleted. | 
					
						
							|  |  |  | 	 * @return	bool	true on success, false on failure | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							|  |  |  | 	public function delete($id) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		return $this->_memcached->delete($id); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// ------------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Increment a raw value | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @param	string	$id	Cache ID | 
					
						
							|  |  |  | 	 * @param	int	$offset	Step/value to add | 
					
						
							|  |  |  | 	 * @return	mixed	New value on success or FALSE on failure | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	public function increment($id, $offset = 1) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  | 		if (($result = $this->_memcached->increment($id, $offset)) === FALSE) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			return $this->_memcached->add($id, $offset) ? $offset : FALSE; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return $result; | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// ------------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Decrement a raw value | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @param	string	$id	Cache ID | 
					
						
							|  |  |  | 	 * @param	int	$offset	Step/value to reduce by | 
					
						
							|  |  |  | 	 * @return	mixed	New value on success or FALSE on failure | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	public function decrement($id, $offset = 1) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2021-11-07 03:05:55 +08:00
										 |  |  | 		if (($result = $this->_memcached->decrement($id, $offset)) === FALSE) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			return $this->_memcached->add($id, 0) ? 0 : FALSE; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return $result; | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// ------------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * Clean the Cache | 
					
						
							|  |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @return	bool	false on failure/true on success | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							|  |  |  | 	public function clean() | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		return $this->_memcached->flush(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// ------------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Cache Info | 
					
						
							|  |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @return	mixed	array on success, false on failure | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	public function cache_info() | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		return $this->_memcached->getStats(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// ------------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * Get Cache Metadata | 
					
						
							|  |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * @param	mixed	$id	key to get cache metadata on | 
					
						
							|  |  |  | 	 * @return	mixed	FALSE on failure, array on success. | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							|  |  |  | 	public function get_metadata($id) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		$stored = $this->_memcached->get($id); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (count($stored) !== 3) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			return FALSE; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		list($data, $time, $ttl) = $stored; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return array( | 
					
						
							|  |  |  | 			'expire'	=> $time + $ttl, | 
					
						
							|  |  |  | 			'mtime'		=> $time, | 
					
						
							|  |  |  | 			'data'		=> $data | 
					
						
							|  |  |  | 		); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// ------------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Is supported | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * Returns FALSE if memcached is not supported on the system. | 
					
						
							|  |  |  | 	 * If it is, we setup the memcached object & return TRUE | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return	bool | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	public function is_supported() | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		return (extension_loaded('memcached') OR extension_loaded('memcache')); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// ------------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Class destructor | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 * | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	 * Closes the connection to Memcache(d) if present. | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @return	void | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 	public function __destruct() | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 		if ($this->_memcached instanceof Memcache) | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2017-11-07 08:45:06 +08:00
										 |  |  | 			$this->_memcached->close(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		elseif ($this->_memcached instanceof Memcached && method_exists($this->_memcached, 'quit')) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			$this->_memcached->quit(); | 
					
						
							| 
									
										
										
										
											2011-04-25 23:24:01 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |