Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 2 |
Apcu4Backend | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
getIterator | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\Core\Cache\Apcu4Backend. | |
*/ | |
namespace Drupal\Core\Cache; | |
/** | |
* Stores cache items in the Alternative PHP Cache User Cache (APCu). | |
* | |
* This class is used with APCu versions >= 4.0.0 and < 5.0.0. | |
*/ | |
class Apcu4Backend extends ApcuBackend { | |
/** | |
* {@inheritdoc} | |
* | |
* @return \APCIterator | |
*/ | |
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); | |
} | |
} |