lithium\storage\cache\Adapter::write()
Write values to the cache. All items to be cached will receive an
expiration time of $expiry
.
Parameters
-
array
$keys
Key/value pairs with keys to uniquely identify the to-be-cached item.
-
string|integer
$expiry
A
strtotime()
compatible cache time or TTL in seconds. To persist an item use\lithium\storage\Cache::PERSIST
.
Returns
booleantrue
on successful write, false
otherwise.
Source
abstract public function write(array $keys, $expiry = null);