PHP Класс Pimcore\Cache\Backend\Memcached

Устаревший:
Наследование: extends Zend_Cache_Backend_Memcached
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
$checkedCacheConsistency boolean
$db Zend_Db_Adapter_Abstract

Открытые методы

Метод Описание
__construct ( array $options = [] )
clean ( string $mode = Zend_Cache::CLEANING_MODE_ALL, array $tags = [] ) : boolean Clean some cache records
getCapabilities ( ) : array
getIdsMatchingAnyTags ( array $tags = [] ) : array
getIdsMatchingTags ( array $tags = [] ) : array
load ( $id, boolean $doNotTestCacheValidity = false ) : void
remove ( string $id ) : boolean
save ( string $data, string $id, array $tags = [], integer $specificLifetime = false ) : boolean Save some string datas into a cache record

Защищенные методы

Метод Описание
checkCacheConsistency ( ) : void
clearTags ( ) : void
getDb ( ) : Zend_Db_Adapter_Abstract
getItemsByTag ( string $tag ) : array
getTagsById ( string $id ) : array
saveTags ( string $id, array $tags ) : void

Описание методов

__construct() публичный Метод

public __construct ( array $options = [] )
$options array

checkCacheConsistency() защищенный Метод

protected checkCacheConsistency ( ) : void
Результат void

clean() публичный Метод

Available modes are : 'all' (default) => remove all cache entries ($tags is not used) 'old' => remove too old cache entries ($tags is not used) 'matchingTag' => remove cache entries matching all given tags ($tags can be an array of strings or a single string) 'notMatchingTag' => remove cache entries not matching one of the given tags ($tags can be an array of strings or a single string)
public clean ( string $mode = Zend_Cache::CLEANING_MODE_ALL, array $tags = [] ) : boolean
$mode string Clean mode
$tags array Array of tags
Результат boolean True if no problem

clearTags() защищенный Метод

protected clearTags ( ) : void
Результат void

getCapabilities() публичный Метод

public getCapabilities ( ) : array
Результат array

getDb() защищенный Метод

protected getDb ( ) : Zend_Db_Adapter_Abstract
Результат Zend_Db_Adapter_Abstract

getIdsMatchingAnyTags() публичный Метод

public getIdsMatchingAnyTags ( array $tags = [] ) : array
$tags array
Результат array

getIdsMatchingTags() публичный Метод

public getIdsMatchingTags ( array $tags = [] ) : array
$tags array
Результат array

getItemsByTag() защищенный Метод

protected getItemsByTag ( string $tag ) : array
$tag string
Результат array

getTagsById() защищенный Метод

protected getTagsById ( string $id ) : array
$id string
Результат array tags for given id

load() публичный Метод

public load ( $id, boolean $doNotTestCacheValidity = false ) : void
$id
$doNotTestCacheValidity boolean
Результат void

remove() публичный Метод

public remove ( string $id ) : boolean
$id string
Результат boolean true if OK

save() публичный Метод

Note : $data is always "string" (serialization is done by the core not by the backend)
public save ( string $data, string $id, array $tags = [], integer $specificLifetime = false ) : boolean
$data string Datas to cache
$id string Cache id
$tags array Array of strings, the cache record will be tagged by each string entry
$specificLifetime integer If != false, set a specific lifetime for this cache record (null => infinite lifetime)
Результат boolean True if no problem

saveTags() защищенный Метод

protected saveTags ( string $id, array $tags ) : void
$id string
$tags array
Результат void

Описание свойств

$checkedCacheConsistency защищенное свойство

protected bool $checkedCacheConsistency
Результат boolean

$db защищенное свойство

protected Zend_Db_Adapter_Abstract $db
Результат Zend_Db_Adapter_Abstract