1
0
Fork 0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-02-24 19:29:17 +03:00

[Cache API] Link CacheInterface

LogMANOriginal 2016-10-16 12:36:48 +02:00
parent 661ac85b11
commit 0b1c5eea4e

@ -1,4 +1,4 @@
A _Cache_ is a class that allows **RSS-Bridge** to store fetched data in a local storage area on the server. Cache imlementations are placed in the `caches/` folder (see [Folder structure](Folder-structure)). A cache must implement the `CacheInterface` interface.
A _Cache_ is a class that allows **RSS-Bridge** to store fetched data in a local storage area on the server. Cache imlementations are placed in the `caches/` folder (see [Folder structure](Folder-structure)). A cache must implement the [`CacheInterface`](CacheInterface) interface.
For more information about how to create a new `Cache`, read [How to create a new cache?](How-to-create-a-new-cache)