APCu:
*
APCu
*
Simple storage and retrieval
apcu_store can be used to store, apcu_fetch to retrieve values:
$key = 'Hello';
$value = 'World';
apcu_store($key, $value);
print(apcu_fetch('Hello')); // 'World'