![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/magento/framework/Cache/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Cache; /** * Interface of a cache frontend - an ultimate publicly available interface to an actual cache storage * * @api * @since 100.0.2 */ interface FrontendInterface { /** * Test if a cache is available for the given id * * @param string $identifier Cache id * @return int|bool Last modified time of cache entry if it is available, false otherwise */ public function test($identifier); /** * Load cache record by its unique identifier * * @param string $identifier * @return string|bool */ public function load($identifier); /** * Save cache record * * @param string $data * @param string $identifier * @param array $tags * @param int|bool|null $lifeTime * @return bool */ public function save($data, $identifier, array $tags = [], $lifeTime = null); /** * Remove cache record by its unique identifier * * @param string $identifier * @return bool */ public function remove($identifier); /** * Clean cache records matching specified tags * * @param string $mode * @param array $tags * @return bool */ public function clean($mode = \Zend_Cache::CLEANING_MODE_ALL, array $tags = []); /** * Retrieve backend instance * * @return \Zend_Cache_Backend_Interface */ public function getBackend(); /** * Retrieve frontend instance compatible with Zend Locale Data setCache() to be used as a workaround * * @return \Zend_Cache_Core */ public function getLowLevelFrontend(); }