PHP Класс Pimcore\Cache

Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
$cachePrefix string prefix which will be added to every item-key
$clearedTagsStack array Contains the tags which were already cleared
$defaultLifetime null
$ignoredTagsOnClear array items having one of the tags in this store are not cleared when calling self::clearTags() or self::clearTag()
$instance Zend_Cache_Core | Zend_Cache_Frontend Instance of the used cache-implementation
$logger Logger Contains the Logger, this is necessary because otherwise logging doesn't work in shutdown (missing reference)
$maxWriteToCacheItems integer How many items should stored to the cache within one process
$saveStack array Contains the items which should be written to the cache on shutdown. They are ordered respecting the priority

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

Свойство Тип Описание
$_clearTagsOnShutdown array Items having tags which are in this array are cleared on shutdown \Pimcore::shutdown(); This is especially for the output-cache
$blackHoleCache Zend_Cache_Core
$enabled boolean
$forceImmediateWrite boolean if set to truq items are directly written into the cache, and do not get into the queue
$writeLockTimestamp integer contains the timestamp of the writeLockTime from the current process this is to recheck when removing the write lock (if the value is different -> higher) do not remove the lock because then another process has acquired a lock

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

Метод Описание
addClearTagOnShutdown ( $tag ) : void Adds a tag to the shutdown queue, see clearTagsOnShutdown
addClearedTag ( string $tag )
addIgnoredTagOnClear ( $tag ) : void
clearAll ( ) : void Empty the cache
clearSaveStack ( )
clearTag ( string $tag ) : void Removes entries from the cache matching the given tag
clearTags ( array $tags = [] ) : void Removes entries from the cache matching the given tags
clearTagsOnShutdown ( ) : void Clears all tags stored in self::$_clearTagsOnShutdown, this function is executed in \Pimcore::shutdown()
disable ( ) : void Disables the complete pimcore cache
enable ( ) : void
getBlackHoleCache ( ) : Zend_Cache_Core | Zend_Cache_Frontend
getDefaultCache ( ) : Zend_Cache_Core | Zend_Cache_Frontend
getDefaultConfig ( string | null $adapter = null ) : array
getForceImmediateWrite ( ) : boolean
getInstance ( ) : Zend_Cache_Core | Zend_Cache_Frontend Returns a instance of the cache, if the instance isn't available it creates a new one
hasWriteLock ( ) : boolean
init ( )
initializeCache ( $config ) : Zend_Cache_Core | Zend_Cache_Frontend
load ( string $key, $doNotTestCacheValidity = false ) : mixed Returns the content of the requested cache entry
maintenance ( )
remove ( $key )
removeIgnoredTagOnClear ( $tag ) : void
removeWriteLock ( )
save ( $data, $key, array $tags = [], null $lifetime = null, integer $priority, boolean $force = false ) : boolean | void
setForceImmediateWrite ( boolean $forceImmediateWrite )
setWriteLock ( $force = false )
setZendFrameworkCaches ( null $cache = null )
test ( string $key ) : integer | boolean Get the last modified time for the requested cache entry
write ( ) : void Write the stack to the cache

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

Метод Описание
normalizeConfig ( $config ) : mixed
storeToCache ( $data, $key, array $tags = [], null $lifetime = null, boolean $force = false ) : boolean | void Write's an item to the cache // don't use the logger inside here

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

addClearTagOnShutdown() публичный статический Метод

Adds a tag to the shutdown queue, see clearTagsOnShutdown
public static addClearTagOnShutdown ( $tag ) : void
$tag
Результат void

addClearedTag() публичный статический Метод

public static addClearedTag ( string $tag )
$tag string

addIgnoredTagOnClear() публичный статический Метод

public static addIgnoredTagOnClear ( $tag ) : void
$tag
Результат void

clearAll() публичный статический Метод

Empty the cache
public static clearAll ( ) : void
Результат void

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

public clearSaveStack ( )

clearTag() публичный статический Метод

Removes entries from the cache matching the given tag
public static clearTag ( string $tag ) : void
$tag string
Результат void

clearTags() публичный статический Метод

Removes entries from the cache matching the given tags
public static clearTags ( array $tags = [] ) : void
$tags array
Результат void

clearTagsOnShutdown() публичный статический Метод

Clears all tags stored in self::$_clearTagsOnShutdown, this function is executed in \Pimcore::shutdown()
public static clearTagsOnShutdown ( ) : void
Результат void

disable() публичный статический Метод

Disables the complete pimcore cache
public static disable ( ) : void
Результат void

enable() публичный статический Метод

public static enable ( ) : void
Результат void

getBlackHoleCache() публичный статический Метод

public static getBlackHoleCache ( ) : Zend_Cache_Core | Zend_Cache_Frontend
Результат Zend_Cache_Core | Zend_Cache_Frontend

getDefaultCache() публичный статический Метод

public static getDefaultCache ( ) : Zend_Cache_Core | Zend_Cache_Frontend
Результат Zend_Cache_Core | Zend_Cache_Frontend

getDefaultConfig() публичный статический Метод

public static getDefaultConfig ( string | null $adapter = null ) : array
$adapter string | null
Результат array

getForceImmediateWrite() публичный статический Метод

public static getForceImmediateWrite ( ) : boolean
Результат boolean

getInstance() публичный статический Метод

Returns a instance of the cache, if the instance isn't available it creates a new one
public static getInstance ( ) : Zend_Cache_Core | Zend_Cache_Frontend
Результат Zend_Cache_Core | Zend_Cache_Frontend

hasWriteLock() публичный статический Метод

public static hasWriteLock ( ) : boolean
Результат boolean

init() публичный статический Метод

public static init ( )

initializeCache() публичный статический Метод

public static initializeCache ( $config ) : Zend_Cache_Core | Zend_Cache_Frontend
$config
Результат Zend_Cache_Core | Zend_Cache_Frontend

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

Returns the content of the requested cache entry
public static load ( string $key, $doNotTestCacheValidity = false ) : mixed
$key string
Результат mixed

maintenance() публичный статический Метод

public static maintenance ( )

normalizeConfig() защищенный статический Метод

protected static normalizeConfig ( $config ) : mixed
$config
Результат mixed

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

public static remove ( $key )
$key

removeIgnoredTagOnClear() публичный статический Метод

public static removeIgnoredTagOnClear ( $tag ) : void
$tag
Результат void

removeWriteLock() публичный статический Метод

public static removeWriteLock ( )

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

public static save ( $data, $key, array $tags = [], null $lifetime = null, integer $priority, boolean $force = false ) : boolean | void
$data
$key
$tags array
$lifetime null
$priority integer
$force boolean
Результат boolean | void

setForceImmediateWrite() публичный статический Метод

public static setForceImmediateWrite ( boolean $forceImmediateWrite )
$forceImmediateWrite boolean

setWriteLock() публичный статический Метод

public static setWriteLock ( $force = false )

setZendFrameworkCaches() публичный статический Метод

public static setZendFrameworkCaches ( null $cache = null )
$cache null

storeToCache() защищенный статический Метод

Write's an item to the cache // don't use the logger inside here
protected static storeToCache ( $data, $key, array $tags = [], null $lifetime = null, boolean $force = false ) : boolean | void
$data
$key
$tags array
$lifetime null
$force boolean
Результат boolean | void

test() публичный статический Метод

Get the last modified time for the requested cache entry
public static test ( string $key ) : integer | boolean
$key string Cache key
Результат integer | boolean Last modified time of cache entry if it is available, false otherwise

write() публичный статический Метод

Write the stack to the cache
public static write ( ) : void
Результат void

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

$_clearTagsOnShutdown защищенное статическое свойство

Items having tags which are in this array are cleared on shutdown \Pimcore::shutdown(); This is especially for the output-cache
protected static array $_clearTagsOnShutdown
Результат array

$blackHoleCache защищенное статическое свойство

protected static Zend_Cache_Core $blackHoleCache
Результат Zend_Cache_Core

$cachePrefix публичное статическое свойство

prefix which will be added to every item-key
public static string $cachePrefix
Результат string

$clearedTagsStack публичное статическое свойство

Contains the tags which were already cleared
public static array $clearedTagsStack
Результат array

$defaultLifetime публичное статическое свойство

public static null $defaultLifetime
Результат null

$enabled защищенное статическое свойство

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

$forceImmediateWrite защищенное статическое свойство

if set to truq items are directly written into the cache, and do not get into the queue
protected static bool $forceImmediateWrite
Результат boolean

$ignoredTagsOnClear публичное статическое свойство

items having one of the tags in this store are not cleared when calling self::clearTags() or self::clearTag()
public static array $ignoredTagsOnClear
Результат array

$instance публичное статическое свойство

Instance of the used cache-implementation
public static Zend_Cache_Core|Zend_Cache_Frontend $instance
Результат Zend_Cache_Core | Zend_Cache_Frontend

$logger публичное статическое свойство

Contains the Logger, this is necessary because otherwise logging doesn't work in shutdown (missing reference)
public static Logger,pimcore $logger
Результат Logger

$maxWriteToCacheItems публичное статическое свойство

How many items should stored to the cache within one process
public static int $maxWriteToCacheItems
Результат integer

$saveStack публичное статическое свойство

Contains the items which should be written to the cache on shutdown. They are ordered respecting the priority
public static array $saveStack
Результат array

$writeLockTimestamp защищенное статическое свойство

contains the timestamp of the writeLockTime from the current process this is to recheck when removing the write lock (if the value is different -> higher) do not remove the lock because then another process has acquired a lock
protected static int $writeLockTimestamp
Результат integer