Back to Rss Bridge

02 CacheInterface

docs/07_Cache_API/02_CacheInterface.md

2025-08-05307 B
Original Source

See CacheInterface.

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;
}