memcache is not storing data accross requests
- by morpheous
I am new to using memcache, so I may be doing something wrong.
I have written a wrapper class around memcache. The wrapper class has only static methods, so is a quasi singleton.
The class looks something like this:
class myCache
{
private static $memcache = null;
private static $initialized = false;
public static function init()
…