芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/fmd/vendor/tedivm/stash/src/Stash/Interfaces/ItemInterface.php
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Stash\Interfaces; use \Psr\Cache\CacheItemInterface; interface ItemInterface extends CacheItemInterface { /** * Sets the Parent Pool for the Item class to use. * * Typically called by Pool directly, and *must* be called before running caching functions. * * @param PoolInterface $driver */ public function setPool(PoolInterface $driver); /** * Takes and sets the key and namespace. * * Typically called by Pool directly, and *must* be called before running caching functions. * * @param array $key * @param string|null $namespace */ public function setKey(array $key, $namespace = null); /** * This disables any IO operations by this object, effectively preventing * the reading and writing of new data. * * @return bool */ public function disable(); /** * Returns the key as a string. This is particularly useful when the Item is * returned as a group of Items in an Iterator. * * @return string */ public function getKey(); /** * Clears the current Item. If hierarchical or "stackable" caching is being * used this function will also remove children Items. * * @return bool */ public function clear(); /** * Returns the data retrieved from the cache. Since this can return false or * null as a correctly cached value, the return value should not be used to * determine successful retrieval of data- for that use the "isMiss()" * function after call this one. If no value is stored at all then this * function will return null. * * @return mixed */ public function get(); /** * Returns true if the cached item is valid and usable. * * @return bool */ public function isHit(); /** * Returns true if the cached item needs to be refreshed. * * @return bool */ public function isMiss(); /** * Enables stampede protection by marking this specific instance of the Item * as the one regenerating the cache. * * @param null $ttl * @return bool */ public function lock($ttl = null); /** * Takes and stores data for later retrieval. This data can be any php data, * including arrays and object, except resources and objects which are * unable to be serialized. * * @param mixed $value bool * @return self */ public function set($value); /** * Extends the expiration on the current cached item. For some engines this * can be faster than storing the item again. * * @param null $ttl * @return bool */ public function extend($ttl = null); /** * Return true if caching is disabled * * @return bool True if caching is disabled. */ public function isDisabled(); /** * Sets a PSR\Logger style logging client to enable the tracking of errors. * * @param \PSR\Log\LoggerInterface $logger * @return bool */ public function setLogger($logger); /** * Returns the record's creation time or false if it isn't set * * @return \DateTime */ public function getCreation(); /** * Returns the record's expiration timestamp or false if no expiration timestamp is set * * @return \DateTime */ public function getExpiration(); /** * Sets the expiration based off of an integer or DateInterval * * @param int|\DateInterval $time * @return self */ public function expiresAfter($time); /** * Sets the expiration to a specific time. * * @param \DateTimeInterface $expiration * @return self */ public function expiresAt($expiration); /** * Sets the expiration based off a an integer, date interval, or date * * @param mixed $ttl An integer, date interval, or date * @return self */ public function setTTL($ttl = null); /** * Set the cache invalidation method for this item. * * @see Stash\Invalidation * * @param int $invalidation A Stash\Invalidation constant * @param mixed $arg First argument for invalidation method * @param mixed $arg2 Second argument for invalidation method */ public function setInvalidationMethod($invalidation, $arg = null, $arg2 = null); /** * Persists the Item's value to the backend storage. * * @return bool */ public function save(); }