Query: apciterator
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
APCITERATOR(3) 1 APCITERATOR(3) The APCIterator classINTRODUCTIONThe APCIterator class makes it easier to iterate over large APC caches. This is helpful as it allows iterating over large caches in steps, while grabbing a defined number of entries per lock instance, so it frees the cache locks for other activities rather than hold up the entire cache to grab 100 (the default) entries. Also, using regular expression matching is more efficient as it's been moved to the C level.CLASS SYNOPSISAPCIterator APCIteratorIterator Methods o public APCIterator::__construct (string $cache, [mixed $search = null], [int $format = APC_ITER_ALL], [int $chunk_size = 100], [int $list = APC_LIST_ACTIVE]) o public mixed APCIterator::current (void ) o public int APCIterator::getTotalCount (void ) o public int APCIterator::getTotalHits (void ) o public int APCIterator::getTotalSize (void ) o public string APCIterator::key (void ) o public void APCIterator::next (void ) o public void APCIterator::rewind (void ) o public void APCIterator::valid (void ) PHP Documentation Group APCITERATOR(3)