我正在使用redis作为会话商店以及其他一些东西。我使用gem redis-rails
,这就是我为heroku配置它的方式:
MyApp::Application.config.session_store :redis_store , redis_server: ENV['REDISTOGO_URL']
我如何以及在何处为所有redis键设置默认ttl?这甚至可能吗?
答案 0 :(得分:1)
您必须设置参数 expire_in
MyApp :: Application.config.session_store:redis_store,redis_server:ENV [' REDISTOGO_URL'],:expire_in => 900
单位为秒