PHP 클래스 Neos\Cache\Backend\NullBackend

상속: extends AbstractBackend, implements Neos\Cache\Backend\PhpCapableBackendInterface, implements Neos\Cache\Backend\TaggableBackendInterface
파일 보기 프로젝트 열기: neos/flow-development-collection 1 사용 예제들

공개 메소드들

메소드 설명
collectGarbage ( ) : void Does nothing
findIdentifiersByTag ( string $tag ) : array Returns an empty array
flush ( ) : void Does nothing
flushByTag ( string $tag ) : void Does nothing
get ( string $entryIdentifier ) : boolean Returns False
has ( string $entryIdentifier ) : boolean Returns False
remove ( string $entryIdentifier ) : boolean Does nothing
requireOnce ( string $identifier ) : void Does nothing
set ( string $entryIdentifier, string $data, array $tags = [], integer $lifetime = null ) : void Acts as if it would save data

메소드 상세

collectGarbage() 공개 메소드

Does nothing
public collectGarbage ( ) : void
리턴 void

findIdentifiersByTag() 공개 메소드

Returns an empty array
public findIdentifiersByTag ( string $tag ) : array
$tag string ignored
리턴 array An empty array

flush() 공개 메소드

Does nothing
public flush ( ) : void
리턴 void

flushByTag() 공개 메소드

Does nothing
public flushByTag ( string $tag ) : void
$tag string ignored
리턴 void

get() 공개 메소드

Returns False
public get ( string $entryIdentifier ) : boolean
$entryIdentifier string ignored
리턴 boolean FALSE

has() 공개 메소드

Returns False
public has ( string $entryIdentifier ) : boolean
$entryIdentifier string ignored
리턴 boolean FALSE

remove() 공개 메소드

Does nothing
public remove ( string $entryIdentifier ) : boolean
$entryIdentifier string ignored
리턴 boolean FALSE

requireOnce() 공개 메소드

Does nothing
public requireOnce ( string $identifier ) : void
$identifier string An identifier which describes the cache entry to load
리턴 void

set() 공개 메소드

Acts as if it would save data
public set ( string $entryIdentifier, string $data, array $tags = [], integer $lifetime = null ) : void
$entryIdentifier string ignored
$data string ignored
$tags array ignored
$lifetime integer ignored
리턴 void