Laravel4.0使用redis,报错Call to undefined method Redis::connection()

今天在laravel里使用redis,碰到这异常Call to undefined method Redis::connection()

根据文档检查redis配置和状态,无任何异常,使用phpredis API直接访问也能使用,内网只能用代理,好多网站被屏蔽,只能用百度,也搜不到任何有用信息,好在github还能用,搜到这篇https://github.com/laravel/framework/issues/1066

原来是phpredis扩展里的类也叫Redis,与laravel封装的redis api同名,需要更改app/config/app.php中得alais数组里的

'Redis'           => 'Illuminate\Support\Facades\Redis', 把Redis换个名字问题解决。

其实文档里也提到了这点:

注意: 如果你是通过PECL为PHP安装的Redis扩展模块,那么,你必须在 app/config/app.php 文件中对其别名进行重新命名。


你可能感兴趣的:(laravel)