Neos\Cache\Backend\ApcBackend::rewind PHP Method

rewind() public method

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