34 if (function_exists(
'apcu_exists')) {
35 return apcu_exists($this->
returnKey($key));
37 return (
bool) apcu_fetch($this->
returnKey($key));
40 public function set(
string $key, $serialized_value,
int $ttl = null):
bool 42 return apcu_store($this->
returnKey($key), $serialized_value, $ttl);
48 public function get(
string $key)
50 return apcu_fetch($this->
returnKey($key));
56 public function delete(
string $key):
bool 58 return apcu_delete($this->
returnKey($key));
61 public function flush(
bool $complete =
false): bool
64 return function_exists(
'apcu_clear_cache') && apcu_clear_cache();
82 return ($serialized_value);
89 $cache_info = apc_cache_info();
91 unset($cache_info[
'cache_list']);
92 unset($cache_info[
'slot_distribution']);
94 $return[
'__cache_info'] = array(
95 'apc.enabled' => ini_get(
'apc.enabled'),
96 'apc.shm_size' => ini_get(
'apc.shm_size'),
97 'apc.shm_segments' => ini_get(
'apc.shm_segments'),
98 'apc.gc_ttl' => ini_get(
'apc.gc_ttl'),
99 'apc.user_ttl' => ini_get(
'apc.ttl'),
100 'info' => $cache_info,
103 $cache_info = apc_cache_info();
104 foreach ($cache_info[
'cache_list'] as $dat) {
108 $return[
$key] = apc_fetch($key);
117 return function_exists(
'apcu_store');
122 return function_exists(
'apcu_store');
131 return ini_get(
'apc.shm_size');
139 return self::MIN_MEMORY;
isValid(string $key)
Checks whether the cache key is valid or not.
flush(bool $complete=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
unserialize($serialized_value)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...