$memcache = new Memcache; $memcache->connect('127.0.0.1', 11211); print_r($memcache); exit;
// do we have the PHP memcached extension available if (!class_exists('Memcache')) { throw new \Fuel_Exception('Memcache cache are configured, but your PHP installation doesn\'t have the Memcache extension loaded.'); } $memcache = new \Memcache; $memcache->addServer('127.0.0.1', 11211); $this->memcached = $memcache;
It looks like you're new here. If you want to get involved, click one of these buttons!