Vergleich inc/cachehandlers/memcache.php - 1.8.6 - 1.8.13

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 11Zeile 11
/**
* Memcache Cache Handler
*/

/**
* Memcache Cache Handler
*/

class memcacheCacheHandler

class memcacheCacheHandler implements CacheHandlerInterface

{
/**
* The memcache server resource

{
/**
* The memcache server resource

Zeile 27Zeile 27
	 */
public $unique_id;


	 */
public $unique_id;


	/**
* @param bool $silent
*/
function memcacheCacheHandler($silent=false)

	function __construct()




	{
global $mybb;


	{
global $mybb;


Zeile 98Zeile 95
	 * Retrieve an item from the cache.
*
* @param string $name The name of the cache

	 * Retrieve an item from the cache.
*
* @param string $name The name of the cache

	 * @param boolean $hard_refresh True if we should do a hard refresh

 
	 * @return mixed Cache data if successful, false if failure
*/

	 * @return mixed Cache data if successful, false if failure
*/

	function fetch($name, $hard_refresh=false)

	function fetch($name)

	{
$data = $this->memcache->get($this->unique_id."_".$name);


	{
$data = $this->memcache->get($this->unique_id."_".$name);


Zeile 151Zeile 147
	 *
* @return string
*/

	 *
* @return string
*/

	function size_of($name)

	function size_of($name='')

	{
global $lang;


	{
global $lang;