PHP 클래스 Jenner\SimpleFork\Cache\RedisCache

상속: implements Jenner\SimpleFork\Cache\CacheInterface
파일 보기 프로젝트 열기: huyanping/simple-fork-php 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$prefix
$redis Redis

공개 메소드들

메소드 설명
__construct ( string $host = '127.0.0.1', integer $port = 6379, integer $database, string $prefix = 'simple-fork' )
__destruct ( ) close redis connection
close ( ) close the connection
delete ( $key ) : boolean delete var
get ( $key, null $default = null ) : boolean | string | null get var
has ( $key ) : boolean has var ?
set ( $key, null $value ) : boolean set var

메소드 상세

__construct() 공개 메소드

public __construct ( string $host = '127.0.0.1', integer $port = 6379, integer $database, string $prefix = 'simple-fork' )
$host string
$port integer
$database integer
$prefix string

__destruct() 공개 메소드

close redis connection
public __destruct ( )

close() 공개 메소드

close the connection
public close ( )

delete() 공개 메소드

delete var
public delete ( $key ) : boolean
$key
리턴 boolean

get() 공개 메소드

get var
public get ( $key, null $default = null ) : boolean | string | null
$key
$default null
리턴 boolean | string | null

has() 공개 메소드

has var ?
public has ( $key ) : boolean
$key
리턴 boolean

set() 공개 메소드

set var
public set ( $key, null $value ) : boolean
$key
$value null
리턴 boolean

프로퍼티 상세

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

protected $prefix

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

protected Redis $redis
리턴 Redis