PHP 클래스 Pimcore\Cache\Backend\Memcached

사용 중단:
상속: extends Zend_Cache_Backend_Memcached
파일 보기 프로젝트 열기: pimcore/pimcore

보호된 프로퍼티들

프로퍼티 타입 설명
$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