2018-03-24 14:39:13 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Core\Cache;
|
|
|
|
|
2018-07-10 18:55:01 -04:00
|
|
|
use Exception;
|
2020-01-18 09:41:19 -05:00
|
|
|
use Friendica\Core\BaseCache;
|
2019-12-19 14:11:07 -05:00
|
|
|
use Friendica\Core\Config\IConfiguration;
|
2018-07-10 18:55:01 -04:00
|
|
|
use Memcached;
|
2019-08-03 14:48:56 -04:00
|
|
|
use Psr\Log\LoggerInterface;
|
2018-07-10 18:55:01 -04:00
|
|
|
|
2018-03-24 14:39:13 -04:00
|
|
|
/**
|
2019-08-04 04:26:53 -04:00
|
|
|
* Memcached Cache
|
2018-03-24 14:39:13 -04:00
|
|
|
*
|
2018-09-15 19:28:38 -04:00
|
|
|
* @author Hypolite Petovan <hypolite@mrpetovan.com>
|
2018-03-24 14:39:13 -04:00
|
|
|
*/
|
2020-01-18 09:41:19 -05:00
|
|
|
class MemcachedCache extends BaseCache implements IMemoryCache
|
2018-03-24 14:39:13 -04:00
|
|
|
{
|
2018-07-04 17:37:22 -04:00
|
|
|
use TraitCompareSet;
|
|
|
|
use TraitCompareDelete;
|
2019-09-24 11:52:38 -04:00
|
|
|
use TraitMemcacheCommand;
|
2018-07-04 17:37:22 -04:00
|
|
|
|
2018-03-24 14:39:13 -04:00
|
|
|
/**
|
2018-07-05 14:57:31 -04:00
|
|
|
* @var \Memcached
|
2018-03-24 14:39:13 -04:00
|
|
|
*/
|
|
|
|
private $memcached;
|
|
|
|
|
2019-08-03 14:48:56 -04:00
|
|
|
/**
|
|
|
|
* @var LoggerInterface
|
|
|
|
*/
|
|
|
|
private $logger;
|
|
|
|
|
2018-07-08 01:46:46 -04:00
|
|
|
/**
|
|
|
|
* Due to limitations of the INI format, the expected configuration for Memcached servers is the following:
|
|
|
|
* array {
|
|
|
|
* 0 => "hostname, port(, weight)",
|
|
|
|
* 1 => ...
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* @param array $memcached_hosts
|
2019-08-04 09:51:49 -04:00
|
|
|
*
|
2018-07-08 01:46:46 -04:00
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2019-12-19 14:11:07 -05:00
|
|
|
public function __construct(string $hostname, IConfiguration $config, LoggerInterface $logger)
|
2018-03-24 14:39:13 -04:00
|
|
|
{
|
|
|
|
if (!class_exists('Memcached', false)) {
|
2018-07-10 18:55:01 -04:00
|
|
|
throw new Exception('Memcached class isn\'t available');
|
2018-03-24 14:39:13 -04:00
|
|
|
}
|
|
|
|
|
2019-08-03 14:48:56 -04:00
|
|
|
parent::__construct($hostname);
|
|
|
|
|
|
|
|
$this->logger = $logger;
|
|
|
|
|
2018-07-10 18:55:01 -04:00
|
|
|
$this->memcached = new Memcached();
|
2018-03-24 14:39:13 -04:00
|
|
|
|
2019-08-03 14:48:56 -04:00
|
|
|
$memcached_hosts = $config->get('system', 'memcached_hosts');
|
|
|
|
|
2018-07-08 01:46:46 -04:00
|
|
|
array_walk($memcached_hosts, function (&$value) {
|
2018-07-17 02:05:06 -04:00
|
|
|
if (is_string($value)) {
|
|
|
|
$value = array_map('trim', explode(',', $value));
|
|
|
|
}
|
2018-07-08 01:46:46 -04:00
|
|
|
});
|
|
|
|
|
2019-09-24 11:52:38 -04:00
|
|
|
$this->server = $memcached_hosts[0][0] ?? 'localhost';
|
|
|
|
$this->port = $memcached_hosts[0][1] ?? 11211;
|
2019-08-15 07:58:01 -04:00
|
|
|
|
2018-03-24 14:39:13 -04:00
|
|
|
$this->memcached->addServers($memcached_hosts);
|
|
|
|
|
|
|
|
if (count($this->memcached->getServerList()) == 0) {
|
2018-07-10 18:55:01 -04:00
|
|
|
throw new Exception('Expected Memcached servers aren\'t available, config:' . var_export($memcached_hosts, true));
|
2018-03-24 14:39:13 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-25 22:52:32 -04:00
|
|
|
/**
|
|
|
|
* (@inheritdoc)
|
|
|
|
*/
|
2018-10-06 18:27:54 -04:00
|
|
|
public function getAllKeys($prefix = null)
|
2018-09-25 22:52:32 -04:00
|
|
|
{
|
2019-09-24 11:52:38 -04:00
|
|
|
$keys = $this->getOriginalKeys($this->getMemcacheKeys());
|
2018-10-06 18:27:54 -04:00
|
|
|
|
2019-08-15 07:58:01 -04:00
|
|
|
return $this->filterArrayKeysByPrefix($keys, $prefix);
|
|
|
|
}
|
|
|
|
|
2018-09-25 22:51:41 -04:00
|
|
|
/**
|
|
|
|
* (@inheritdoc)
|
|
|
|
*/
|
2018-03-24 14:39:13 -04:00
|
|
|
public function get($key)
|
|
|
|
{
|
2019-08-04 09:51:49 -04:00
|
|
|
$return = null;
|
2018-07-05 15:47:52 -04:00
|
|
|
$cachekey = $this->getCacheKey($key);
|
2018-03-24 14:39:13 -04:00
|
|
|
|
|
|
|
// We fetch with the hostname as key to avoid problems with other applications
|
2018-07-05 15:47:52 -04:00
|
|
|
$value = $this->memcached->get($cachekey);
|
2018-03-24 14:39:13 -04:00
|
|
|
|
2018-07-10 18:55:01 -04:00
|
|
|
if ($this->memcached->getResultCode() === Memcached::RES_SUCCESS) {
|
2018-10-07 04:38:45 -04:00
|
|
|
$return = $value;
|
2018-10-07 04:35:37 -04:00
|
|
|
} else {
|
2019-08-04 09:51:49 -04:00
|
|
|
$this->logger->debug('Memcached \'get\' failed', ['result' => $this->memcached->getResultMessage()]);
|
2018-03-24 14:39:13 -04:00
|
|
|
}
|
2018-10-07 04:38:45 -04:00
|
|
|
|
|
|
|
return $return;
|
2018-03-24 14:39:13 -04:00
|
|
|
}
|
|
|
|
|
2018-09-25 22:51:41 -04:00
|
|
|
/**
|
|
|
|
* (@inheritdoc)
|
|
|
|
*/
|
2020-01-18 09:41:19 -05:00
|
|
|
public function set($key, $value, $ttl = Duration::FIVE_MINUTES)
|
2018-03-24 14:39:13 -04:00
|
|
|
{
|
2018-07-05 15:47:52 -04:00
|
|
|
$cachekey = $this->getCacheKey($key);
|
|
|
|
|
2018-03-24 14:39:13 -04:00
|
|
|
// We store with the hostname as key to avoid problems with other applications
|
2018-07-04 17:37:22 -04:00
|
|
|
if ($ttl > 0) {
|
|
|
|
return $this->memcached->set(
|
2018-07-05 15:47:52 -04:00
|
|
|
$cachekey,
|
2018-07-04 17:37:22 -04:00
|
|
|
$value,
|
2018-07-07 13:46:16 -04:00
|
|
|
$ttl
|
2018-07-04 17:37:22 -04:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return $this->memcached->set(
|
2018-07-05 15:47:52 -04:00
|
|
|
$cachekey,
|
2018-07-04 17:37:22 -04:00
|
|
|
$value
|
|
|
|
);
|
|
|
|
}
|
2018-03-24 14:39:13 -04:00
|
|
|
}
|
|
|
|
|
2018-09-25 22:51:41 -04:00
|
|
|
/**
|
|
|
|
* (@inheritdoc)
|
|
|
|
*/
|
2018-03-24 14:39:13 -04:00
|
|
|
public function delete($key)
|
|
|
|
{
|
2018-07-05 15:47:52 -04:00
|
|
|
$cachekey = $this->getCacheKey($key);
|
|
|
|
return $this->memcached->delete($cachekey);
|
2018-03-24 14:39:13 -04:00
|
|
|
}
|
|
|
|
|
2018-09-25 22:51:41 -04:00
|
|
|
/**
|
|
|
|
* (@inheritdoc)
|
|
|
|
*/
|
2018-07-07 13:46:16 -04:00
|
|
|
public function clear($outdated = true)
|
2018-03-24 14:39:13 -04:00
|
|
|
{
|
2018-07-07 13:46:16 -04:00
|
|
|
if ($outdated) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return $this->memcached->flush();
|
|
|
|
}
|
2018-03-24 14:39:13 -04:00
|
|
|
}
|
2018-07-04 17:37:22 -04:00
|
|
|
|
|
|
|
/**
|
2018-09-25 22:51:41 -04:00
|
|
|
* (@inheritdoc)
|
2018-07-04 17:37:22 -04:00
|
|
|
*/
|
2020-01-18 09:41:19 -05:00
|
|
|
public function add($key, $value, $ttl = Duration::FIVE_MINUTES)
|
2018-07-04 17:37:22 -04:00
|
|
|
{
|
2018-07-05 15:47:52 -04:00
|
|
|
$cachekey = $this->getCacheKey($key);
|
|
|
|
return $this->memcached->add($cachekey, $value, $ttl);
|
2018-07-04 17:37:22 -04:00
|
|
|
}
|
2019-08-04 09:42:39 -04:00
|
|
|
|
2019-08-04 10:13:53 -04:00
|
|
|
/**
|
|
|
|
* {@inheritDoc}
|
|
|
|
*/
|
|
|
|
public function getName()
|
2019-08-04 09:42:39 -04:00
|
|
|
{
|
2020-01-18 09:41:19 -05:00
|
|
|
return Type::MEMCACHED;
|
2019-08-04 09:42:39 -04:00
|
|
|
}
|
2018-03-24 14:39:13 -04:00
|
|
|
}
|