apcu_store can be used to store, apcu_fetch to retrieve values:
apcu_store
apcu_fetch
$key = 'Hello'; $value = 'World'; apcu_store($key, $value); print(apcu_fetch('Hello')); // 'World'