2018-03-24 14:39:13 -04:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2018-03-24 14:39:13 -04:00
|
|
|
|
|
|
|
namespace Friendica\Core\Cache;
|
|
|
|
|
|
|
|
/**
|
2019-08-04 04:26:53 -04:00
|
|
|
* Cache Interface
|
2018-03-24 14:39:13 -04:00
|
|
|
*/
|
2019-08-04 04:26:53 -04:00
|
|
|
interface ICache
|
2018-03-24 14:39:13 -04:00
|
|
|
{
|
2018-09-25 22:52:32 -04:00
|
|
|
/**
|
|
|
|
* Lists all cache keys
|
|
|
|
*
|
2018-10-06 18:27:54 -04:00
|
|
|
* @param string prefix optional a prefix to search
|
|
|
|
*
|
2018-10-07 16:14:05 -04:00
|
|
|
* @return array Empty if it isn't supported by the cache driver
|
2018-09-25 22:52:32 -04:00
|
|
|
*/
|
2018-10-06 18:27:54 -04:00
|
|
|
public function getAllKeys($prefix = null);
|
2018-09-25 22:52:32 -04:00
|
|
|
|
2018-03-24 14:39:13 -04:00
|
|
|
/**
|
2018-07-05 01:59:56 -04:00
|
|
|
* Fetches cached data according to the key
|
2018-03-24 14:39:13 -04: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 01:59:56 -04:00
|
|
|
* Stores data in the cache identified by the key. The input $value can have multiple formats.
|
2018-03-24 14:39:13 -04:00
|
|
|
*
|
|
|
|
* @param string $key The cache key
|
|
|
|
* @param mixed $value The value to store
|
2018-10-29 05:16:07 -04:00
|
|
|
* @param integer $ttl The cache lifespan, must be one of the Cache constants
|
2018-03-24 14:39:13 -04:00
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2020-01-18 09:41:19 -05:00
|
|
|
public function set($key, $value, $ttl = Duration::FIVE_MINUTES);
|
2018-03-24 14:39:13 -04:00
|
|
|
|
|
|
|
/**
|
2018-07-05 01:59:56 -04:00
|
|
|
* Delete a key from the cache
|
2018-03-24 14:39:13 -04:00
|
|
|
*
|
2018-07-04 17:37:22 -04:00
|
|
|
* @param string $key The cache key
|
2018-03-24 14:39:13 -04:00
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function delete($key);
|
|
|
|
|
|
|
|
/**
|
2018-07-05 01:59:56 -04:00
|
|
|
* Remove outdated data from the cache
|
2018-07-07 13:46:16 -04:00
|
|
|
* @param boolean $outdated just remove outdated values
|
2018-03-24 14:39:13 -04:00
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2018-07-07 13:46:16 -04:00
|
|
|
public function clear($outdated = true);
|
2019-08-04 10:13:53 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the name of the current cache
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getName();
|
2018-03-24 14:39:13 -04:00
|
|
|
}
|