Commit 8c417049 authored by Taylor Otwell's avatar Taylor Otwell

use memcached instead of memcache.

parent b7ac6674
<?php namespace Laravel\Cache\Drivers; use Memcache; <?php namespace Laravel\Cache\Drivers;
class Memcached extends Driver { class Memcached extends Driver {
/** /**
* The Memcache instance. * The Memcache instance.
* *
* @var Memcache * @var Memcached
*/ */
protected $memcache; protected $memcache;
...@@ -19,10 +19,10 @@ class Memcached extends Driver { ...@@ -19,10 +19,10 @@ class Memcached extends Driver {
/** /**
* Create a new Memcached cache driver instance. * Create a new Memcached cache driver instance.
* *
* @param Memcache $memcache * @param Memcached $memcache
* @return void * @return void
*/ */
public function __construct(Memcache $memcache, $key) public function __construct(\Memcached $memcache, $key)
{ {
$this->key = $key; $this->key = $key;
$this->memcache = $memcache; $this->memcache = $memcache;
...@@ -68,7 +68,7 @@ class Memcached extends Driver { ...@@ -68,7 +68,7 @@ class Memcached extends Driver {
*/ */
public function put($key, $value, $minutes) public function put($key, $value, $minutes)
{ {
$this->memcache->set($this->key.$key, $value, 0, $minutes * 60); $this->memcache->set($this->key.$key, $value, $minutes * 60);
} }
/** /**
......
...@@ -5,7 +5,7 @@ class Memcached { ...@@ -5,7 +5,7 @@ class Memcached {
/** /**
* The Memcached connection instance. * The Memcached connection instance.
* *
* @var Memcache * @var Memcached
*/ */
protected static $connection; protected static $connection;
...@@ -40,11 +40,11 @@ class Memcached { ...@@ -40,11 +40,11 @@ class Memcached {
*/ */
protected static function connect($servers) protected static function connect($servers)
{ {
$memcache = new \Memcache; $memcache = new \Memcached;
foreach ($servers as $server) foreach ($servers as $server)
{ {
$memcache->addServer($server['host'], $server['port'], true, $server['weight']); $memcache->addServer($server['host'], $server['port'], $server['weight']);
} }
if ($memcache->getVersion() === false) if ($memcache->getVersion() === false)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment