Rails应用程序中的Redis :: TimeoutError

时间:2015-04-02 10:18:22

标签: ruby redis timeout

我的应用程序中不断出现Redis :: Timeout错误(在UI和后台作业中)。我正在为Redis使用AWS ElastiCache服务。

这就是我创建Redis连接的方式。在我的config / application.rb中,我有:

$redis = Redis.new(host: REDIS_HOST, port: REDIS_PORT, db: REDIS_DB)

如何避免出现超时错误?我使用默认连接设置如下:

> $redis.client.options[:reconnect_attempts]
 => 1 
> $redis.client.options[:timeout]
 => 5.0 
> $redis.client.options[:tcp_keepalive]
 => 0 
> $redis.client.options[:inherit_socket]
 => false

1 个答案:

答案 0 :(得分:1)

您应该在Connection Pool Gem的帮助下汇集Redis连接,如果问题仍然存在,请增加超时值:

ConnectionPool.new(size: 5, timeout: 3) {Redis.new({:host => 'localhost', :port => 6379, :db => 1, :timeout => 240})}

Redis Gem