%PDF- %PDF-
Direktori : /data/www_bck/varak.net_bck/stats.varak.net/vendor/matomo/cache/src/ |
Current File : //data/www_bck/varak.net_bck/stats.varak.net/vendor/matomo/cache/src/Cache.php |
<?php /** * Matomo - free/libre analytics platform * * @link https://matomo.org * @license http://www.gnu.org/licenses/lgpl-3.0.html LGPL v3 or later * */ namespace Matomo\Cache; interface Cache { /** * Fetches an entry from the cache. * * @param string $id The cache id. * @return mixed The cached data or FALSE, if no cache entry exists for the given id. */ public function fetch($id); /** * Tests if an entry exists in the cache. * * @param string $id The cache id. * @return boolean TRUE if a cache entry exists for the given cache id, FALSE otherwise. */ public function contains($id); /** * Puts data into the cache. * * @param string $id The cache id. * @param mixed $data The cache entry/data. * @param int $lifeTime The cache lifetime in seconds. * If != 0, sets a specific lifetime for this cache entry (0 => infinite lifeTime). * * @return boolean TRUE if the entry was successfully stored in the cache, FALSE otherwise. */ public function save($id, $data, $lifeTime = 0); /** * Deletes a cache entry. * * @param string $id The cache id. * @return boolean TRUE if the cache entry was successfully deleted, FALSE otherwise. */ public function delete($id); /** * Flushes all cache entries. * * @return boolean TRUE if the cache entries were successfully flushed, FALSE otherwise. */ public function flushAll(); }