2017-11-09 11:05:18 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Core/Cache.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Core;
|
|
|
|
|
2018-02-28 23:48:09 -05:00
|
|
|
use Friendica\Core\Cache;
|
2017-11-09 11:05:18 -05:00
|
|
|
use Friendica\Core\Config;
|
2017-12-17 15:24:57 -05:00
|
|
|
|
2017-11-09 11:05:18 -05:00
|
|
|
/**
|
|
|
|
* @brief Class for storing data for a short time
|
|
|
|
*/
|
2018-03-01 00:33:56 -05:00
|
|
|
class Cache extends \Friendica\BaseObject
|
2017-11-09 11:05:18 -05:00
|
|
|
{
|
2018-03-06 21:34:00 -05:00
|
|
|
const MONTH = 2592000;
|
|
|
|
const WEEK = 604800;
|
|
|
|
const DAY = 86400;
|
|
|
|
const HOUR = 3600;
|
|
|
|
const HALF_HOUR = 1800;
|
|
|
|
const QUARTER_HOUR = 900;
|
|
|
|
const FIVE_MINUTES = 300;
|
|
|
|
const MINUTE = 60;
|
2018-02-28 23:48:09 -05:00
|
|
|
|
2017-11-09 11:05:18 -05:00
|
|
|
/**
|
2018-02-28 23:48:09 -05:00
|
|
|
* @var Cache\ICacheDriver
|
2017-11-09 11:05:18 -05:00
|
|
|
*/
|
2018-02-28 23:48:09 -05:00
|
|
|
static $driver = null;
|
2017-11-09 11:05:18 -05:00
|
|
|
|
2018-02-28 23:48:09 -05:00
|
|
|
public static function init()
|
|
|
|
{
|
|
|
|
switch(Config::get('system', 'cache_driver', 'database')) {
|
|
|
|
case 'memcache':
|
|
|
|
$memcache_host = Config::get('system', 'memcache_host', '127.0.0.1');
|
|
|
|
$memcache_port = Config::get('system', 'memcache_port', 11211);
|
2017-11-09 11:05:18 -05:00
|
|
|
|
2018-02-28 23:48:09 -05:00
|
|
|
self::$driver = new Cache\MemcacheCacheDriver($memcache_host, $memcache_port);
|
|
|
|
break;
|
|
|
|
case 'memcached':
|
2018-03-04 23:28:49 -05:00
|
|
|
$memcached_hosts = Config::get('system', 'memcached_hosts', [['127.0.0.1', 11211]]);
|
2017-11-09 11:05:18 -05:00
|
|
|
|
2018-03-04 23:28:49 -05:00
|
|
|
self::$driver = new Cache\MemcachedCacheDriver($memcached_hosts);
|
2018-02-28 23:48:09 -05:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
self::$driver = new Cache\DatabaseCacheDriver();
|
2017-11-09 11:05:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-28 23:48:09 -05:00
|
|
|
/**
|
|
|
|
* Returns the current cache driver
|
|
|
|
*
|
|
|
|
* @return Cache\ICacheDriver
|
|
|
|
*/
|
|
|
|
private static function getDriver()
|
|
|
|
{
|
|
|
|
if (self::$driver === null) {
|
|
|
|
self::init();
|
|
|
|
}
|
|
|
|
|
|
|
|
return self::$driver;
|
|
|
|
}
|
|
|
|
|
2017-11-09 11:05:18 -05:00
|
|
|
/**
|
|
|
|
* @brief Fetch cached data according to the key
|
|
|
|
*
|
|
|
|
* @param string $key The key to the cached data
|
|
|
|
*
|
|
|
|
* @return mixed Cached $value or "null" if not found
|
|
|
|
*/
|
|
|
|
public static function get($key)
|
|
|
|
{
|
2018-03-01 00:33:56 -05:00
|
|
|
$time = microtime(true);
|
|
|
|
|
|
|
|
$return = self::getDriver()->get($key);
|
|
|
|
|
|
|
|
self::getApp()->save_timestamp($time, 'cache');
|
|
|
|
|
|
|
|
return $return;
|
2017-11-09 11:05:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Put data in the cache according to the key
|
|
|
|
*
|
|
|
|
* The input $value can have multiple formats.
|
|
|
|
*
|
|
|
|
* @param string $key The key to the cached data
|
|
|
|
* @param mixed $value The value that is about to be stored
|
|
|
|
* @param integer $duration The cache lifespan
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
2018-02-28 23:48:09 -05:00
|
|
|
* @return bool
|
2017-11-09 11:05:18 -05:00
|
|
|
*/
|
2018-02-28 23:48:09 -05:00
|
|
|
public static function set($key, $value, $duration = self::MONTH)
|
2017-11-09 11:05:18 -05:00
|
|
|
{
|
2018-03-01 00:33:56 -05:00
|
|
|
$time = microtime(true);
|
|
|
|
|
|
|
|
$return = self::getDriver()->set($key, $value, $duration);
|
|
|
|
|
|
|
|
self::getApp()->save_timestamp($time, 'cache_write');
|
|
|
|
|
|
|
|
return $return;
|
2017-11-09 11:05:18 -05:00
|
|
|
}
|
|
|
|
|
2018-03-16 21:57:58 -04:00
|
|
|
/**
|
|
|
|
* @brief Delete a value from the cache
|
|
|
|
*
|
|
|
|
* @param string $key The key to the cached data
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public static function delete($key)
|
|
|
|
{
|
|
|
|
$time = microtime(true);
|
|
|
|
|
|
|
|
$return = self::getDriver()->delete($key);
|
|
|
|
|
|
|
|
self::getApp()->save_timestamp($time, 'cache_write');
|
|
|
|
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
2017-11-09 11:05:18 -05:00
|
|
|
/**
|
|
|
|
* @brief Remove outdated data from the cache
|
|
|
|
*
|
|
|
|
* @param integer $max_level The maximum cache level that is to be cleared
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @return void
|
2017-11-09 11:05:18 -05:00
|
|
|
*/
|
2018-02-28 23:48:09 -05:00
|
|
|
public static function clear()
|
2017-11-09 11:05:18 -05:00
|
|
|
{
|
2018-02-28 23:48:09 -05:00
|
|
|
return self::getDriver()->clear();
|
2017-11-09 11:05:18 -05:00
|
|
|
}
|
|
|
|
}
|