2018-06-28 16:57:17 -04:00
|
|
|
<?php
|
|
|
|
|
2019-03-03 09:05:35 -05:00
|
|
|
namespace Friendica\Factory;
|
2018-06-28 16:57:17 -04:00
|
|
|
|
2019-03-03 09:05:35 -05:00
|
|
|
use Friendica\Core\Cache\ICacheDriver;
|
2018-06-28 16:57:17 -04:00
|
|
|
use Friendica\Core\Config;
|
2019-03-03 09:05:35 -05:00
|
|
|
use Friendica\Core\Cache;
|
2018-06-28 16:57:17 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class CacheDriverFactory
|
|
|
|
*
|
|
|
|
* @package Friendica\Core\Cache
|
|
|
|
*
|
2018-07-05 01:59:56 -04:00
|
|
|
* A basic class to generate a CacheDriver
|
2018-06-28 16:57:17 -04:00
|
|
|
*/
|
|
|
|
class CacheDriverFactory
|
|
|
|
{
|
|
|
|
/**
|
2018-07-05 01:59:56 -04:00
|
|
|
* This method creates a CacheDriver for the given cache driver name
|
2018-06-28 16:57:17 -04:00
|
|
|
*
|
|
|
|
* @param string $driver The name of the cache driver
|
|
|
|
* @return ICacheDriver The instance of the CacheDriver
|
|
|
|
* @throws \Exception The exception if something went wrong during the CacheDriver creation
|
|
|
|
*/
|
2018-06-28 17:06:14 -04:00
|
|
|
public static function create($driver) {
|
2018-06-28 16:57:17 -04:00
|
|
|
|
|
|
|
switch ($driver) {
|
|
|
|
case 'memcache':
|
2018-07-17 02:05:06 -04:00
|
|
|
$memcache_host = Config::get('system', 'memcache_host');
|
|
|
|
$memcache_port = Config::get('system', 'memcache_port');
|
2018-06-28 16:57:17 -04:00
|
|
|
|
2019-03-03 09:05:35 -05:00
|
|
|
return new Cache\MemcacheCacheDriver($memcache_host, $memcache_port);
|
2018-06-28 16:57:17 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'memcached':
|
2018-07-17 02:05:06 -04:00
|
|
|
$memcached_hosts = Config::get('system', 'memcached_hosts');
|
2018-06-28 16:57:17 -04:00
|
|
|
|
2019-03-03 09:05:35 -05:00
|
|
|
return new Cache\MemcachedCacheDriver($memcached_hosts);
|
2018-06-28 16:57:17 -04:00
|
|
|
break;
|
|
|
|
case 'redis':
|
2018-07-17 02:05:06 -04:00
|
|
|
$redis_host = Config::get('system', 'redis_host');
|
|
|
|
$redis_port = Config::get('system', 'redis_port');
|
2018-06-28 16:57:17 -04:00
|
|
|
|
2019-03-03 09:05:35 -05:00
|
|
|
return new Cache\RedisCacheDriver($redis_host, $redis_port);
|
2018-06-28 16:57:17 -04:00
|
|
|
break;
|
|
|
|
default:
|
2019-03-03 09:05:35 -05:00
|
|
|
return new Cache\DatabaseCacheDriver();
|
2018-06-28 16:57:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|