2018-03-24 18:39:13 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Core\Cache;
|
|
|
|
|
|
|
|
/**
|
2019-08-04 10:26:53 +02:00
|
|
|
* Cache Interface
|
2018-03-24 18:39:13 +00:00
|
|
|
*
|
2018-09-15 19:28:38 -04:00
|
|
|
* @author Hypolite Petovan <hypolite@mrpetovan.com>
|
2018-03-24 18:39:13 +00:00
|
|
|
*/
|
2019-08-04 10:26:53 +02:00
|
|
|
interface ICache
|
2018-03-24 18:39:13 +00:00
|
|
|
{
|
2018-09-25 22:52:32 -04:00
|
|
|
/**
|
|
|
|
* Lists all cache keys
|
|
|
|
*
|
2018-10-07 00:27:54 +02:00
|
|
|
* @param string prefix optional a prefix to search
|
|
|
|
*
|
2018-10-07 22:14:05 +02:00
|
|
|
* @return array Empty if it isn't supported by the cache driver
|
2018-09-25 22:52:32 -04:00
|
|
|
*/
|
2018-10-07 00:27:54 +02:00
|
|
|
public function getAllKeys($prefix = null);
|
2018-09-25 22:52:32 -04:00
|
|
|
|
2018-03-24 18:39:13 +00:00
|
|
|
/**
|
2018-07-05 07:59:56 +02:00
|
|
|
* Fetches cached data according to the key
|
2018-03-24 18:39:13 +00:00
|
|
|
*
|
|
|
|
* @param string $key The key to the cached data
|
|
|
|
*
|
|
|
|
* @return mixed Cached $value or "null" if not found
|
|
|
|
*/
|
|
|
|
public function get($key);
|
|
|
|
|
|
|
|
/**
|
2018-07-05 07:59:56 +02:00
|
|
|
* Stores data in the cache identified by the key. The input $value can have multiple formats.
|
2018-03-24 18:39:13 +00:00
|
|
|
*
|
|
|
|
* @param string $key The cache key
|
|
|
|
* @param mixed $value The value to store
|
2018-10-29 10:16:07 +01:00
|
|
|
* @param integer $ttl The cache lifespan, must be one of the Cache constants
|
2018-03-24 18:39:13 +00:00
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2019-08-04 15:51:49 +02:00
|
|
|
public function set($key, $value, $ttl = Cache::FIVE_MINUTES);
|
2018-03-24 18:39:13 +00:00
|
|
|
|
|
|
|
/**
|
2018-07-05 07:59:56 +02:00
|
|
|
* Delete a key from the cache
|
2018-03-24 18:39:13 +00:00
|
|
|
*
|
2018-07-04 23:37:22 +02:00
|
|
|
* @param string $key The cache key
|
2018-03-24 18:39:13 +00:00
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function delete($key);
|
|
|
|
|
|
|
|
/**
|
2018-07-05 07:59:56 +02:00
|
|
|
* Remove outdated data from the cache
|
2018-07-07 19:46:16 +02:00
|
|
|
* @param boolean $outdated just remove outdated values
|
2018-03-24 18:39:13 +00:00
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2018-07-07 19:46:16 +02:00
|
|
|
public function clear($outdated = true);
|
2018-03-24 18:39:13 +00:00
|
|
|
}
|