Page MenuHomeWickedGov Phorge

MultiPutCache.php
No OneTemporary

Size
704 B
Referenced Files
None
Subscribers
None

MultiPutCache.php

<?php
namespace Doctrine\Common\Cache;
/**
* Interface for cache drivers that allows to put many items at once.
*
* @deprecated
*
* @link www.doctrine-project.org
*/
interface MultiPutCache
{
/**
* Returns a boolean value indicating if the operation succeeded.
*
* @param mixed[] $keysAndValues Array of keys and values to save in cache
* @param int $lifetime The lifetime. If != 0, sets a specific lifetime for these
* cache entries (0 => infinite lifeTime).
*
* @return bool TRUE if the operation was successful, FALSE if it wasn't.
*/
public function saveMultiple(array $keysAndValues, $lifetime = 0);
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 21:19 (1 d, 14 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
df/aa/c960d110c6a48d3c05be329576b3
Default Alt Text
MultiPutCache.php (704 B)

Event Timeline