PHP : apc_store doesn't work as intended
- by Industrial
Hi everyone,
I have started to try APC to store some specific data on each webserver as an complement to memcached.
However, the following code piece is giving me headaches:
echo apc_store('key', 'value');
echo apc_store('key', 'newvalue');
echo apc_fetch('key');
Result:
value
Why is apc_store not working as properly?