本文整理汇总了PHP中Zend_Cache_Backend_Interface类的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Cache_Backend_Interface类的具体用法?PHP Zend_Cache_Backend_Interface怎么用?PHP Zend_Cache_Backend_Interface使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Zend_Cache_Backend_Interface类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: touch
/**
* Give (if possible) an extra lifetime to the given cache id
*
* @param string $id cache id
* @param int $extraLifetime
* @return boolean true if ok
*/
public function touch($id, $extraLifetime)
{
if (!$this->_extendedBackend) {
Zend_Cache::throwException(self::BACKEND_NOT_IMPLEMENTS_EXTENDED_IF);
}
$id = $this->_id($id); // cache id may need prefix
return $this->_backend->touch($id, $extraLifetime);
}
开发者ID:realfluid,项目名称:umbaugh,代码行数:15,代码来源:Core.php
示例2: load
/**
* Load value from swap file.
*
* @internal
* @param Zend_Memory_Container_Movable $container
* @param integer $id
*/
public function load(Zend_Memory_Container_Movable $container, $id)
{
$value = $this->_backend->load($this->_managerId . $id, true);
// Try to swap other objects if necessary
// (do not include specified object into check)
$this->_memorySize += strlen($value);
$this->_swapCheck();
// Add loaded obect to the end of loaded objects list
$container->setValue($value);
$this->_loadedObjects[$id] = $container;
}
开发者ID:jorgenils,项目名称:zend-framework,代码行数:18,代码来源:Manager.php
示例3: clear
/**
* Clears contents from storage
*
* @throws Zend_Auth_Storage_Exception If clearing contents from storage is impossible
* @return void
*/
public function clear()
{
$this->_backend->remove($this->_id);
}
开发者ID:hype-,项目名称:xi-zend,代码行数:10,代码来源:CacheStorage.php
注:本文中的Zend_Cache_Backend_Interface类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论