PHP 클래스 Phalcon\Annotations\Adapter\Aerospike

Stores the parsed annotations to the Aerospike database. This adapter is suitable for production. use Phalcon\Annotations\Adapter\Aerospike; $annotations = new Aerospike([ 'hosts' => [ ['addr' => '127.0.0.1', 'port' => 3000] ], 'persistent' => true, 'namespace' => 'test', 'prefix' => 'annotations_', 'lifetime' => 8600, 'options' => [ \Aerospike::OPT_CONNECT_TIMEOUT => 1250, \Aerospike::OPT_WRITE_TIMEOUT => 1500 ] ]);
상속: extends Base
파일 보기 프로젝트 열기: phalcon/incubator 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$aerospike Phalcon\Cache\Backend\Aerospike
$namespace string Default Aerospike namespace
$set string The Aerospike Set for store sessions

공개 메소드들

메소드 설명
__construct ( array $options = [] )

보호된 메소드들

메소드 설명
getCacheBackend ( ) : Aerospike
prepareKey ( string $key ) : string

메소드 상세

__construct() 공개 메소드

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

getCacheBackend() 보호된 메소드

protected getCacheBackend ( ) : Aerospike
리턴 Phalcon\Cache\Backend\Aerospike

prepareKey() 보호된 메소드

protected prepareKey ( string $key ) : string
$key string
리턴 string

프로퍼티 상세

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

protected Aerospike,Phalcon\Cache\Backend $aerospike
리턴 Phalcon\Cache\Backend\Aerospike

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

Default Aerospike namespace
protected string $namespace
리턴 string

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

The Aerospike Set for store sessions
protected string $set
리턴 string