PHP 클래스 phprs\util\CheckableCache

저자: caoym
파일 보기 프로젝트 열기: caoym/phprs-restful

공개 메소드들

메소드 설명
__construct ( object $impl, $tag = '' )
del ( string $name ) 删除
get ( string $name, boolean &$succeeded = null ) : mixed 获取cache
set ( string $name, mixed $var, $ttl, SerializableFunc $expire_check = null ) : boolean 设置cache

메소드 상세

__construct() 공개 메소드

public __construct ( object $impl, $tag = '' )
$impl object instanceof of KVCatchInterface

del() 공개 메소드

删除
public del ( string $name )
$name string

get() 공개 메소드

获取cache
public get ( string $name, boolean &$succeeded = null ) : mixed
$name string
$succeeded boolean
리턴 mixed

set() 공개 메소드

设置cache
public set ( string $name, mixed $var, $ttl, SerializableFunc $expire_check = null ) : boolean
$name string
$var mixed
$expire_check SerializableFunc
리턴 boolean 缓存过期检查方法, 缓存过期(超过ttl)后, get时调用, 返回true表示缓存继续可用. 如checker($got_var, $time)