Went back to connect

Adjusted server a bit, shouldn't need pconnect any longer
This commit is contained in:
Josh Sherman 2013-02-19 19:28:28 -05:00
parent 21a1b730e1
commit 78a9d0dda5
2 changed files with 2 additions and 2 deletions

View file

@ -139,7 +139,7 @@ class Cache extends Object
if ($this->connection === null) if ($this->connection === null)
{ {
$this->connection = new Memcache(); $this->connection = new Memcache();
$this->connection->pconnect($this->hostname, $this->port); $this->connection->connect($this->hostname, $this->port);
} }
return true; return true;

View file

@ -718,7 +718,7 @@ class Cache extends Object
if ($this->connection === null) if ($this->connection === null)
{ {
$this->connection = new Memcache(); $this->connection = new Memcache();
$this->connection->pconnect($this->hostname, $this->port); $this->connection->connect($this->hostname, $this->port);
} }
return true; return true;