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

rewind() 공개 메소드

Rewinds the cache entry iterator to the first element
public rewind ( ) : void
리턴 void
    public function rewind()
    {
        if ($this->cacheEntriesIterator === null) {
            $this->cacheEntriesIterator = new \APCIterator('user', '/^' . $this->identifierPrefix . 'entry_.*/');
        } else {
            $this->cacheEntriesIterator->rewind();
        }
    }