PHP 클래스 yii\mongodb\Cache

By default, Cache stores session data in a MongoDB collection named 'cache' inside the default database. This collection is better to be pre-created with fields 'id' and 'expire' indexed. The collection name can be changed by setting [[cacheCollection]]. Please refer to Cache for common cache operations that are supported by Cache. The following example shows how you can configure the application to use Cache: php 'cache' => [ 'class' => 'yii\mongodb\Cache', 'db' => 'mymongodb', 'cacheCollection' => 'my_cache', ]
부터: 2.0
저자: Paul Klimov ([email protected])
상속: extends yii\caching\Cache
파일 보기 프로젝트 열기: yiisoft/yii2-mongodb 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
$cacheCollection the name of the MongoDB collection that stores the cache data. Please refer to [[Connection::getCollection()]] on how to specify this parameter. This collection is better to be pre-created with fields 'id' and 'expire' indexed.
$db the MongoDB connection object or the application component ID of the MongoDB connection. After the Cache object is created, if you want to change this property, you should only assign it with a MongoDB connection object. Starting from version 2.0.2, this can also be a configuration array for creating the object.
$gcProbability the probability (parts per million) that garbage collection (GC) should be performed when storing a piece of data in the cache. Defaults to 100, meaning 0.01% chance. This number should be between 0 and 1000000. A value 0 meaning no GC will be performed at all.

공개 메소드들

메소드 설명
gc ( boolean $force = false ) Removes the expired data values.
init ( ) Initializes the Cache component.

보호된 메소드들

메소드 설명
addValue ( string $key, string $value, integer $expire ) : boolean Stores a value identified by a key into cache if the cache does not contain this key.
deleteValue ( string $key ) : boolean Deletes a value with the specified key from cache This method should be implemented by child classes to delete the data from actual cache storage.
flushValues ( ) : boolean Deletes all values from cache.
getValue ( string $key ) : string | boolean Retrieves a value from cache with a specified key.
setValue ( string $key, string $value, integer $expire ) : boolean Stores a value identified by a key in cache.

메소드 상세

addValue() 보호된 메소드

This method should be implemented by child classes to store the data in specific cache storage.
protected addValue ( string $key, string $value, integer $expire ) : boolean
$key string the key identifying the value to be cached
$value string the value to be cached
$expire integer the number of seconds in which the cached value will expire. 0 means never expire.
리턴 boolean true if the value is successfully stored into cache, false otherwise

deleteValue() 보호된 메소드

Deletes a value with the specified key from cache This method should be implemented by child classes to delete the data from actual cache storage.
protected deleteValue ( string $key ) : boolean
$key string the key of the value to be deleted
리턴 boolean if no error happens during deletion

flushValues() 보호된 메소드

Child classes may implement this method to realize the flush operation.
protected flushValues ( ) : boolean
리턴 boolean whether the flush operation was successful.

gc() 공개 메소드

Removes the expired data values.
public gc ( boolean $force = false )
$force boolean whether to enforce the garbage collection regardless of [[gcProbability]]. Defaults to false, meaning the actual deletion happens with the probability as specified by [[gcProbability]].

getValue() 보호된 메소드

This method should be implemented by child classes to retrieve the data from specific cache storage.
protected getValue ( string $key ) : string | boolean
$key string a unique key identifying the cached value
리턴 string | boolean the value stored in cache, false if the value is not in the cache or expired.

init() 공개 메소드

This method will initialize the [[db]] property to make sure it refers to a valid MongoDB connection.
public init ( )

setValue() 보호된 메소드

This method should be implemented by child classes to store the data in specific cache storage.
protected setValue ( string $key, string $value, integer $expire ) : boolean
$key string the key identifying the value to be cached
$value string the value to be cached
$expire integer the number of seconds in which the cached value will expire. 0 means never expire.
리턴 boolean true if the value is successfully stored into cache, false otherwise

프로퍼티 상세

$cacheCollection 공개적으로 프로퍼티

the name of the MongoDB collection that stores the cache data. Please refer to [[Connection::getCollection()]] on how to specify this parameter. This collection is better to be pre-created with fields 'id' and 'expire' indexed.
public $cacheCollection

$db 공개적으로 프로퍼티

the MongoDB connection object or the application component ID of the MongoDB connection. After the Cache object is created, if you want to change this property, you should only assign it with a MongoDB connection object. Starting from version 2.0.2, this can also be a configuration array for creating the object.
public $db

$gcProbability 공개적으로 프로퍼티

the probability (parts per million) that garbage collection (GC) should be performed when storing a piece of data in the cache. Defaults to 100, meaning 0.01% chance. This number should be between 0 and 1000000. A value 0 meaning no GC will be performed at all.
public $gcProbability