ruby-on-rails – Redis :: CommandError:运行rspec时ERR值为无效的DB索引

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Redis :: CommandError:运行rspec时ERR值为无效的DB索引前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚刚开始使用现有的Rails代码库,我试图在代码库中运行测试.但是,当我运行bundle exec rspec spec /我在每个测试中都会收到以下错误
Failure/Error: Unable to find matching line from backtrace
Redis::CommandError:
   ERR invalid DB index
 # ./lib/redised.rb:35:in `flushdb_all'
 # ./lib/redised.rb:35:in `each_value'
 # ./lib/redised.rb:35:in `flushdb_all'

我很新的轨道 – 我只完成了Michael Hartl的rails教程中的11个章节中的8个,所以我不太熟悉Redis.我的Redis版本是redis-2.4.17.

解决方法

问题是我需要增加数据库数量.为此,我去了/usr/local / etc并修改了redis.conf.我将数据库号设置为128:数据库128.
原文链接:https://www.f2er.com/ruby/271856.html

猜你在找的Ruby相关文章