Neos\Cache\Backend\ApcBackend::key PHP 메소드

key() 공개 메소드

Returns the identifier of the current cache entry pointed to by the cache entry iterator.
public key ( ) : string
리턴 string
    public function key()
    {
        if ($this->cacheEntriesIterator === null) {
            $this->rewind();
        }
        return substr($this->cacheEntriesIterator->key(), strlen($this->identifierPrefix . 'entry_'));
    }