Server : Apache System : Linux indy02.toastserver.com 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64 User : palandch ( 1163) PHP Version : 7.1.33 Disable Function : NONE Directory : /home/palandch/www/core/model/aws/lib/cachecore/ |
<?php /** * Defines the methods that all implementing classes MUST have. Covers CRUD (create, read, update, * delete) methods, as well as others that are used in the base <CacheCore> class. * * @version 2009.03.22 * @copyright 2006-2010 Ryan Parman * @copyright 2006-2010 Foleeo, Inc. * @copyright 2008-2010 Contributors * @license http://opensource.org/licenses/bsd-license.php Simplified BSD License * @link http://github.com/skyzyx/cachecore CacheCore * @link http://getcloudfusion.com CloudFusion */ interface ICacheCore { /** * Creates a new cache. * * @param mixed $data (Required) The data to cache. * @return boolean Whether the operation was successful. */ public function create($data); /** * Reads a cache. * * @return mixed Either the content of the cache object, or boolean `false`. */ public function read(); /** * Updates an existing cache. * * @param mixed $data (Required) The data to cache. * @return boolean Whether the operation was successful. */ public function update($data); /** * Deletes a cache. * * @return boolean Whether the operation was successful. */ public function delete(); /** * Checks whether the cache object is expired or not. * * @return boolean Whether the cache is expired or not. */ public function is_expired(); /** * Retrieves the timestamp of the cache. * * @return mixed Either the Unix time stamp of the cache creation, or boolean `false`. */ public function timestamp(); /** * Resets the freshness of the cache. * * @return boolean Whether the operation was successful. */ public function reset(); }