protected Apcu4Backend::getIterator($search = NULL, $format = APC_ITER_ALL, $chunk_size = 100, $list = APC_LIST_ACTIVE)
Return value
\APCIterator
Overrides ApcuBackend::getIterator
File
- core/lib/Drupal/Core/Cache/Apcu4Backend.php, line 17
Class
- Apcu4Backend
- Stores cache items in the Alternative PHP Cache User Cache (APCu).
Namespace
Drupal\Core\Cache
Code
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); }
Please login to continue.