protected function Apcu4Backend::getIterator in Drupal 8
Return value
\APCIterator
Overrides ApcuBackend::getIterator
File
- core/
lib/ Drupal/ Core/ Cache/ Apcu4Backend.php, line 24
Class
- Apcu4Backend
- Stores cache items in the Alternative PHP Cache User Cache (APCu).
Namespace
Drupal\Core\CacheCode
protected function getIterator($search = NULL, $format = APC_ITER_ALL, $chunk_size = 100, $list = APC_LIST_ACTIVE) {
return new \APCIterator('user', $search, $format, $chunk_size, $list);
}