2018-07-05 21:47:52 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Core\Cache;
|
|
|
|
use Friendica\BaseObject;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Abstract class for common used functions
|
|
|
|
*
|
|
|
|
* Class AbstractCacheDriver
|
|
|
|
*
|
|
|
|
* @package Friendica\Core\Cache
|
|
|
|
*/
|
2018-07-05 21:54:20 +02:00
|
|
|
abstract class AbstractCacheDriver extends BaseObject
|
2018-07-05 21:47:52 +02:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @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;
|
|
|
|
}
|
|
|
|
}
|