apc problem: installed but not working?
Posted: Sun Mar 29, 2009 12:33 pm
apc seems to be installed fine. It comes up in my php.ini and apc.php dsplays its statistics. But using the code example from the php manual doesn't work:
var_dump shows it returns false. Maybe there's a setting somewhere I don't know about.
I'm using ubuntu 8.10
Code: Select all
$bar = 'BAR';
apc_store('foo', $bar);
var_dump(apc_fetch('foo'));
I'm using ubuntu 8.10