| Server IP : 23.111.136.34 / Your IP : 216.73.216.136 Web Server : Apache System : Linux servidor.eurohost.com.br 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : meusitei ( 1072) PHP Version : 5.6.40 Disable Function : show_source, system, shell_exec, passthru, proc_open MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/meusitei/public_html/painel/mkt/MailWizzApi/Cache/ |
Upload File : |
<?php
/**
* This file contains the APC cache class used in the MailWizzApi PHP-SDK.
*
* @author Serban George Cristian <cristian.serban@mailwizz.com>
* @link http://www.mailwizz.com/
* @copyright 2013-2017 http://www.mailwizz.com/
*/
/**
* MailWizzApi_Cache_Xcache makes use of the xcache extension in order to cache data in memory.
*
* As all the data will stay in memory, it is recommeded that will be used only if
* the system has enough memory, or for development/small servers.
*
* @author Serban George Cristian <cristian.serban@mailwizz.com>
* @package MailWizzApi
* @subpackage Cache
* @since 1.0
*/
class MailWizzApi_Cache_Xcache extends MailWizzApi_Cache_Abstract
{
/**
* Cache data by given key.
*
* For consistency, the key will go through sha1() before it is saved.
*
* This method implements {@link MailWizzApi_Cache_Abstract::set()}.
*
* @param string $key
* @param mixed $value
* @return bool
*/
public function set($key, $value)
{
return xcache_set(sha1($key), $value, 0);
}
/**
* Get cached data by given key.
*
* For consistency, the key will go through sha1()
* before it will be used to retrieve the cached data.
*
* This method implements {@link MailWizzApi_Cache_Abstract::get()}.
*
* @param string $key
* @return mixed
*/
public function get($key)
{
return xcache_isset(sha1($key)) ? xcache_get(sha1($key)) : null;
}
/**
* Delete cached data by given key.
*
* For consistency, the key will go through sha1()
* before it will be used to delete the cached data.
*
* This method implements {@link MailWizzApi_Cache_Abstract::delete()}.
*
* @param string $key
* @return bool
*/
public function delete($key)
{
return xcache_unset(sha1($key));
}
/**
* Delete all cached data.
*
* This method implements {@link MailWizzApi_Cache_Abstract::flush()}.
*
* @return bool
*/
public function flush()
{
for ($i = 0, $max = xcache_count(XC_TYPE_VAR); $i < $max; $i++) {
if (xcache_clear_cache(XC_TYPE_VAR, $i) === false) {
return false;
}
}
return true;
}
}