PHP 클래스 Horde_Cache_Storage_Mongo, horde

저자: Michael Slusarz ([email protected])
상속: extends Horde_Cache_Storage_Base
파일 보기 프로젝트 열기: horde/horde 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$_db MongoCollection The MongoDB Collection object for the cache data.

공개 메소드들

메소드 설명
__construct ( array $params = [] ) Constructor.
__destruct ( ) Destructor.
clear ( )
exists ( $key, $lifetime )
expire ( $key )
get ( $key, $lifetime )
set ( $key, $data, $lifetime )

보호된 메소드들

메소드 설명
_getCid ( string $key ) : string Gets the cache ID for a key.
_initOb ( )

메소드 상세

__construct() 공개 메소드

Constructor.
public __construct ( array $params = [] )
$params array Parameters:
  - collection: (string) The collection name.
  - mongo_db: [REQUIRED] (Horde_Mongo_Client) A MongoDB client object.

__destruct() 공개 메소드

Destructor.
public __destruct ( )

_getCid() 보호된 메소드

Gets the cache ID for a key.
protected _getCid ( string $key ) : string
$key string The key.
리턴 string The cache ID.

_initOb() 보호된 메소드

protected _initOb ( )

clear() 공개 메소드

public clear ( )

exists() 공개 메소드

public exists ( $key, $lifetime )

expire() 공개 메소드

public expire ( $key )

get() 공개 메소드

public get ( $key, $lifetime )

set() 공개 메소드

public set ( $key, $data, $lifetime )

프로퍼티 상세

$_db 보호되어 있는 프로퍼티

The MongoDB Collection object for the cache data.
protected MongoCollection $_db
리턴 MongoCollection