protected function Apcu4Backend::getIterator

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);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Cache!Apcu4Backend.php/function/Apcu4Backend::getIterator/8.1.x