1
0
Fork 0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-01-03 10:07:27 +03:00
rss-bridge/docs/07_Cache_API/02_CacheInterface.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
308 B
Markdown
Raw Normal View History

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