Vergleich inc/cachehandlers/xcache.php - 1.8.6 - 1.8.14

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

/**
* Xcache Cache Handler
*/

class xcacheCacheHandler

class xcacheCacheHandler implements CacheHandlerInterface

{
/**
* Unique identifier representing this copy of MyBB

{
/**
* Unique identifier representing this copy of MyBB

Zeile 20Zeile 20
	 */
public $unique_id;


	 */
public $unique_id;


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

	function __construct()




	{
global $mybb;


	{
global $mybb;


Zeile 56Zeile 53
	 * 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)

	{
if(!xcache_isset($this->unique_id."_".$name))
{

	{
if(!xcache_isset($this->unique_id."_".$name))
{

Zeile 106Zeile 102
	 *
* @return string
*/

	 *
* @return string
*/

	function size_of($name)

	function size_of($name='')

	{
global $lang;


	{
global $lang;