Correction, memcache.
I tried to add a __construct() on one of the controller so I can access it for all on that class.
'192.168.100.204' => 11211,
'192.168.100.218' => 11211,
'192.168.100.219' => 11211,
)
);
$this->memcache = new Frapi_Cache_Adapter_Memcache($options);
$this->memcache->add('testcache', '123gotit');
echo "memcache:".$this->memcache->get('testcache');
}
It worked anyway, but was wondering if you guys could add like an AppController and AppModel, so we could declare everything there for global use.
Regards,
Louie