我想让我的应用用户指定一个时区,然后在每个请求的开头设置他们的时区。在Rails,AFAICT中,这是通过设置单例对象来完成的:
Time.zone = "America/Los_Angeles"
我对最佳实践的理解是,一般来说,单身人士应该设置为ONCE。例如,在应用程序配置中。
从类似问题的答案中,有人建议在ApplicationController中设置它
class ApplicationController < ActionController::Base
before_filter :set_timezone
def set_timezone
# current_user.time_zone #=> 'London'
Time.zone = current_user.time_zone if current_user && current_user.time_zone
end
end
这样安全吗?或者我冒一个线程影响另一个线程的风险?我会尝试对此进行测试,但这不是最简单的测试场景,所以我想我应该看看是否有人已经这样做了。