From 78a9d0dda506ea9405aadac17f15eafb2c34d65d Mon Sep 17 00:00:00 2001 From: Josh Sherman Date: Tue, 19 Feb 2013 19:28:28 -0500 Subject: [PATCH] Went back to connect Adjusted server a bit, shouldn't need pconnect any longer --- classes/Cache.php | 2 +- jar.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/Cache.php b/classes/Cache.php index 8be0a20..3a847e8 100644 --- a/classes/Cache.php +++ b/classes/Cache.php @@ -139,7 +139,7 @@ class Cache extends Object if ($this->connection === null) { $this->connection = new Memcache(); - $this->connection->pconnect($this->hostname, $this->port); + $this->connection->connect($this->hostname, $this->port); } return true; diff --git a/jar.php b/jar.php index b500ddd..bd21971 100755 --- a/jar.php +++ b/jar.php @@ -718,7 +718,7 @@ class Cache extends Object if ($this->connection === null) { $this->connection = new Memcache(); - $this->connection->pconnect($this->hostname, $this->port); + $this->connection->connect($this->hostname, $this->port); } return true;