use Friendica\Core\Cache;
+use Exception;
+use Memcache;
+
/**
* Memcache Cache Driver
*
use TraitCompareDelete;
/**
- * @var \Memcache
+ * @var Memcache
*/
private $memcache;
public function __construct($memcache_host, $memcache_port)
{
if (!class_exists('Memcache', false)) {
- throw new \Exception('Memcache class isn\'t available');
+ throw new Exception('Memcache class isn\'t available');
}
- $this->memcache = new \Memcache();
+ $this->memcache = new Memcache();
if (!$this->memcache->connect($memcache_host, $memcache_port)) {
- throw new \Exception('Expected Memcache server at ' . $memcache_host . ':' . $memcache_port . ' isn\'t available');
+ throw new Exception('Expected Memcache server at ' . $memcache_host . ':' . $memcache_port . ' isn\'t available');
}
}
use Friendica\Core\Cache;
+use Exception;
+use Memcached;
+
/**
* Memcached Cache Driver
*
public function __construct(array $memcached_hosts)
{
if (!class_exists('Memcached', false)) {
- throw new \Exception('Memcached class isn\'t available');
+ throw new Exception('Memcached class isn\'t available');
}
- $this->memcached = new \Memcached();
+ $this->memcached = new Memcached();
$this->memcached->addServers($memcached_hosts);
if (count($this->memcached->getServerList()) == 0) {
- throw new \Exception('Expected Memcached servers aren\'t available, config:' . var_export($memcached_hosts, true));
+ throw new Exception('Expected Memcached servers aren\'t available, config:' . var_export($memcached_hosts, true));
}
}
// We fetch with the hostname as key to avoid problems with other applications
$value = $this->memcached->get($cachekey);
- if ($this->memcached->getResultCode() === \Memcached::RES_SUCCESS) {
+ if ($this->memcached->getResultCode() === Memcached::RES_SUCCESS) {
$return = $value;
}
use Friendica\Core\Cache;
+use Exception;
+use Redis;
+
/**
* Redis Cache Driver. This driver is based on Memcache driver
*
class RedisCacheDriver extends AbstractCacheDriver implements IMemoryCacheDriver
{
/**
- * @var \Redis
+ * @var Redis
*/
private $redis;
public function __construct($redis_host, $redis_port)
{
if (!class_exists('Redis', false)) {
- throw new \Exception('Redis class isn\'t available');
+ throw new Exception('Redis class isn\'t available');
}
- $this->redis = new \Redis();
+ $this->redis = new Redis();
if (!$this->redis->connect($redis_host, $redis_port)) {
- throw new \Exception('Expected Redis server at ' . $redis_host . ':' . $redis_port . ' isn\'t available');
+ throw new Exception('Expected Redis server at ' . $redis_host . ':' . $redis_port . ' isn\'t available');
}
}