Redisにexpireを設定するタイミングに注意
Redisのキーにexpireを設定して分散環境でタイムアウト処理を行うときに以下のようなコードにしていると、ごく稀にタイムアウトしないバグが発生します。
require 'redis'
ttl = 60 # 1分間でexpireさせる
redis = Redis.new
redis.set('key', 'val')
redis.expire('key', ttl)
ここでsetとexpireの間でプロセスが終了してしまうと、expireが設定されないキーが残ってしまいます。
その結果以下のようなコードが無限ループに陥ってしまいます。
while redis.get('key').present? ; end
これを防止するためには、setとexpireをアトミックな処理とする必要があります。
redis.multi do
redis.set('key', 'val')
redis.expire('key', ttl)
end
Author And Source
この問題について(Redisにexpireを設定するタイミングに注意), 我々は、より多くの情報をここで見つけました https://qiita.com/shiozaki/items/b746dc4bb5e1e87c0528著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .