我使用了laravel 4 framework开发,想把cache server从memcache切换到redis,在config/cache.php的driver设置为redis。但是调用cache::get()报错,报错信息如:
[2014-10-21 18:47:44] production.ERROR: exception 'Predis\Connection\ConnectionException' with message 'Error while reading line from the server [tcp://127.0.0.1:6379]' in /home/nginx/mono/vendor/predis/predis/lib/Predis/Connection/AbstractConnection.php:141
但是从redis-cli访问redis-server是ok的,在phpunit中单独测试redis也没问题。但是在Route中直接使用有问题。
Route::get('/test', function(){
Cache::put('name', 'Taylor', 60); //报错!
$name = Cache::get('name');
echo $name;
});
谁能解释下问题在哪?
补充:刷新多次/test,会有几次正常。
Predis的StreamConnection Class