APCu will only fetch values that were stored in the current page load.
Refreshing this twice:
<?php
var_dump(apcu_fetch("test"));
apcu_store("test", "works", 3600);
var_dump(apcu_fetch("test"));
?>
outputs the following:
bool(false) string(5) "works"
So it stores the data while the current page is loading. After that it doesn't exist anymore...
I'm using the latest stable version (5.1.2) with the default configuration on PHP 7.0.0.
I've tried different versions of APCu and PHP 7. Also can't find anything similar on Google...