Went back to connect
Adjusted server a bit, shouldn't need pconnect any longer
This commit is contained in:
parent
21a1b730e1
commit
78a9d0dda5
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
2
jar.php
2
jar.php
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue