我在centos 7上安装了Memcached,根据phpinfo(),Memcached 3.0.4可用。我还用ps -eaf检查了Memcached grep Memcached,没关系。 但是当我尝试在laravel中创建Memcached()的实例时,它返回一个错误:
"Class 'App\Utils\Memcached' not found"
这是我的代码:
<?php
namespace App\Utils;
class MemTools {
private $mem;
public function __construct() {
$this->mem = new Memcached();
$this->mem->addServer('localhost',11211) or die ("Could not connect");
}
}
答案 0 :(得分:1)
默认情况下,Memcached
命名空间中没有App\Utils
类。
我不确定你想要达到的目的,但通常你会:
config/cache.php
,所有这些都在Laravel documentation中详细说明。