friendica/src/Core/Cache/ICache.php

65 lines
1.3 KiB
PHP
Raw Normal View History

<?php
namespace Friendica\Core\Cache;
/**
* Cache Interface
*
* @author Hypolite Petovan <hypolite@mrpetovan.com>
*/
interface ICache
{
2018-09-26 04:52:32 +02:00
/**
* Lists all cache keys
*
* @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-26 04:52:32 +02:00
*/
public function getAllKeys($prefix = null);
2018-09-26 04:52:32 +02:00
/**
2018-07-05 07:59:56 +02:00
* Fetches 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 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.
*
* @param string $key The cache key
* @param mixed $value The value to store
* @param integer $ttl The cache lifespan, must be one of the Cache constants
*
* @return bool
*/
public function set($key, $value, $ttl = Duration::FIVE_MINUTES);
/**
2018-07-05 07:59:56 +02:00
* Delete a key from the cache
*
* @param string $key The cache key
*
* @return bool
*/
public function delete($key);
/**
2018-07-05 07:59:56 +02:00
* Remove outdated data from the cache
* @param boolean $outdated just remove outdated values
*
* @return bool
*/
public function clear($outdated = true);
2019-08-04 16:13:53 +02:00
/**
* Returns the name of the current cache
*
* @return string
*/
public function getName();
}