1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-06-21 10:29:59 +02:00
Files
php-rss-bridge/lib/CacheInterface.php
2023-09-10 21:50:15 +02:00

15 lines
281 B
PHP

<?php
interface CacheInterface
{
public function get(string $key, $default = null);
public function set(string $key, $value, int $ttl = null): void;
public function delete(string $key): void;
public function clear(): void;
public function prune(): void;
}