ApcuCache
class ApcuCache extends AbstractCache
Traits
Properties
protected int|null | $maxIdLength | from AbstractTrait |
Methods
array|bool
doSave(array $values, int $lifetime)
Persists several cache items immediately.
from AbstractTrait
static mixed
unserialize(string $value)
deprecated
Like the native unserialize() function but throws an exception if anything goes wrong.
from AbstractTrait
__construct(string $namespace = '', int $defaultLifetime = 0, string $version = null)
No description
Details
abstract protected array|bool
doSave(array $values, int $lifetime)
Persists several cache items immediately.
bool
enableVersioning(bool $enable = true)
Enables/disables versioning of items.
When versioning is enabled, clearing the cache is atomic and doesn't require listing existing keys to proceed, but old keys may need garbage collection and extra round-trips to the back-end are required.
Calling this method also clears the memoized namespace version and thus forces a resynchonization of it.