define('FRIENDICA_CODENAME', 'The Tazmans Flax-lily');
define('FRIENDICA_VERSION', '2018.08-dev');
define('DFRN_PROTOCOL_VERSION', '2.23');
-define('DB_UPDATE_VERSION', 1274);
+define('DB_UPDATE_VERSION', 1275);
define('NEW_UPDATE_ROUTINE_VERSION', 1170);
/**
--- /dev/null
+<?php
+
+namespace Friendica\Core\Cache;
+use Friendica\BaseObject;
+
+
+/**
+ * Abstract class for common used functions
+ *
+ * Class AbstractCacheDriver
+ *
+ * @package Friendica\Core\Cache
+ */
+abstract class AbstractCacheDriver extends BaseObject implements IMemoryCacheDriver
+{
+ /**
+ * @param string $key The original key
+ * @return string The cache key used for the cache
+ */
+ protected function getCacheKey($key) {
+ return self::getApp()->get_hostname() . ":" . $key;
+ }
+}
\ No newline at end of file
*
* @package Friendica\Core\Cache
*/
-class ArrayCache implements IMemoryCacheDriver
+class ArrayCache extends AbstractCacheDriver
{
use TraitCompareDelete;
namespace Friendica\Core\Cache;
-use Friendica\BaseObject;
use Friendica\Core\Cache;
/**
*
* @author Hypolite Petovan <mrpetovan@gmail.com>
*/
-class MemcacheCacheDriver extends BaseObject implements IMemoryCacheDriver
+class MemcacheCacheDriver extends AbstractCacheDriver
{
use TraitCompareSet;
use TraitCompareDelete;
public function get($key)
{
$return = null;
+ $cachekey = $this->getCacheKey($key);
// We fetch with the hostname as key to avoid problems with other applications
- $cached = $this->memcache->get(self::getApp()->get_hostname() . ':' . $key);
+ $cached = $this->memcache->get($cachekey);
// @see http://php.net/manual/en/memcache.get.php#84275
if (is_bool($cached) || is_double($cached) || is_long($cached)) {
*/
public function set($key, $value, $ttl = Cache::FIVE_MINUTES)
{
+ $cachekey = $this->getCacheKey($key);
+
// We store with the hostname as key to avoid problems with other applications
if ($ttl > 0) {
return $this->memcache->set(
- self::getApp()->get_hostname() . ":" . $key,
+ $cachekey,
serialize($value),
MEMCACHE_COMPRESSED,
time() + $ttl
);
} else {
return $this->memcache->set(
- self::getApp()->get_hostname() . ":" . $key,
+ $cachekey,
serialize($value),
MEMCACHE_COMPRESSED
);
*/
public function delete($key)
{
- return $this->memcache->delete($key);
+ $cachekey = $this->getCacheKey($key);
+ return $this->memcache->delete($cachekey);
}
/**
*/
public function add($key, $value, $ttl = Cache::FIVE_MINUTES)
{
- return $this->memcache->add(self::getApp()->get_hostname() . ":" . $key, $value, $ttl);
+ $cachekey = $this->getCacheKey($key);
+ return $this->memcache->add($cachekey, $value, $ttl);
}
}
namespace Friendica\Core\Cache;
-use Friendica\BaseObject;
use Friendica\Core\Cache;
/**
*
* @author Hypolite Petovan <mrpetovan@gmail.com>
*/
-class MemcachedCacheDriver extends BaseObject implements IMemoryCacheDriver
+class MemcachedCacheDriver extends AbstractCacheDriver
{
use TraitCompareSet;
use TraitCompareDelete;
public function get($key)
{
$return = null;
+ $cachekey = $this->getCacheKey($key);
// We fetch with the hostname as key to avoid problems with other applications
- $value = $this->memcached->get(self::getApp()->get_hostname() . ':' . $key);
+ $value = $this->memcached->get($cachekey);
if ($this->memcached->getResultCode() === \Memcached::RES_SUCCESS) {
$return = $value;
public function set($key, $value, $ttl = Cache::FIVE_MINUTES)
{
+ $cachekey = $this->getCacheKey($key);
+
// We store with the hostname as key to avoid problems with other applications
if ($ttl > 0) {
return $this->memcached->set(
- self::getApp()->get_hostname() . ':' . $key,
+ $cachekey,
$value,
time() + $ttl
);
} else {
return $this->memcached->set(
- self::getApp()->get_hostname() . ':' . $key,
+ $cachekey,
$value
);
}
public function delete($key)
{
- $return = $this->memcached->delete(self::getApp()->get_hostname() . ':' . $key);
-
- return $return;
+ $cachekey = $this->getCacheKey($key);
+ return $this->memcached->delete($cachekey);
}
public function clear()
*/
public function add($key, $value, $ttl = Cache::FIVE_MINUTES)
{
- return $this->memcached->add(self::getApp()->get_hostname() . ":" . $key, $value, $ttl);
+ $cachekey = $this->getCacheKey($key);
+ return $this->memcached->add($cachekey, $value, $ttl);
}
}
namespace Friendica\Core\Cache;
-use Friendica\BaseObject;
use Friendica\Core\Cache;
/**
* @author Hypolite Petovan <mrpetovan@gmail.com>
* @author Roland Haeder <roland@mxchange.org>
*/
-class RedisCacheDriver extends BaseObject implements IMemoryCacheDriver
+class RedisCacheDriver extends AbstractCacheDriver
{
/**
* @var \Redis
public function get($key)
{
$return = null;
+ $cachekey = $this->getCacheKey($key);
// We fetch with the hostname as key to avoid problems with other applications
- $cached = $this->redis->get(self::getApp()->get_hostname() . ':' . $key);
+ $cached = $this->redis->get($cachekey);
// @see http://php.net/manual/en/redis.get.php#84275
if (is_bool($cached) || is_double($cached) || is_long($cached)) {
public function set($key, $value, $ttl = Cache::FIVE_MINUTES)
{
+ $cachekey = $this->getCacheKey($key);
+
// We store with the hostname as key to avoid problems with other applications
if ($ttl > 0) {
return $this->redis->setex(
- self::getApp()->get_hostname() . ":" . $key,
+ $cachekey,
time() + $ttl,
serialize($value)
);
} else {
return $this->redis->set(
- self::getApp()->get_hostname() . ":" . $key,
+ $cachekey,
serialize($value)
);
}
*/
public function add($key, $value, $ttl = Cache::FIVE_MINUTES)
{
+ $cachekey = $this->getCacheKey($key);
+
if (!is_int($value)) {
$value = serialize($value);
}
- return $this->redis->setnx(self::getApp()->get_hostname() . ":" . $key, $value);
+ return $this->redis->setnx($cachekey, $value);
}
/**
*/
public function compareSet($key, $oldValue, $newValue, $ttl = Cache::FIVE_MINUTES)
{
+ $cachekey = $this->getCacheKey($key);
+
if (!is_int($newValue)) {
$newValue = serialize($newValue);
}
- $this->redis->watch(self::getApp()->get_hostname() . ":" . $key);
+ $this->redis->watch($cachekey);
// If the old value isn't what we expected, somebody else changed the key meanwhile
- if ($this->get($key) === $oldValue) {
+ if ($this->get($cachekey) === $oldValue) {
if ($ttl > 0) {
$result = $this->redis->multi()
- ->setex(self::getApp()->get_hostname() . ":" . $ttl, $key, $newValue)
+ ->setex($cachekey, $ttl, $newValue)
->exec();
} else {
$result = $this->redis->multi()
- ->set(self::getApp()->get_hostname() . ":" . $key, $newValue)
+ ->set($cachekey, $newValue)
->exec();
}
return $result !== false;
*/
public function compareDelete($key, $value)
{
- $this->redis->watch(self::getApp()->get_hostname() . ":" . $key);
+ $cachekey = $this->getCacheKey($key);
+
+ $this->redis->watch($cachekey);
// If the old value isn't what we expected, somebody else changed the key meanwhile
if ($this->get($key) === $value) {
$result = $this->redis->multi()
- ->del(self::getApp()->get_hostname() . ":" . $key)
+ ->del($cachekey)
->exec();
return $result !== false;
}
$got_lock = false;
$start = time();
- $cachekey = self::getCacheKey($key);
+ $cachekey = self::getLockKey($key);
do {
$lock = $this->cache->get($cachekey);
*/
public function releaseLock($key)
{
- $cachekey = self::getCacheKey($key);
+ $cachekey = self::getLockKey($key);
$this->cache->compareDelete($cachekey, getmypid());
$this->markRelease($key);
*/
public function isLocked($key)
{
- $cachekey = self::getCacheKey($key);
+ $cachekey = self::getLockKey($key);
$lock = $this->cache->get($cachekey);
return isset($lock) && ($lock !== false);
}
* @param string $key The original key
* @return string The cache key used for the cache
*/
- private static function getCacheKey($key) {
- return self::getApp()->get_hostname() . ";lock:" . $key;
+ private static function getLockKey($key) {
+ return "lock:" . $key;
}
}