You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ActiveSupport uses Time.now, which returns the system time without taking into account the Rails application's time zone when the request is completed:
Thus, the data in the redis is created with local time.
However, when reading data from the redis, Time.current is used, which makes the data completely unavailable for a certain period of time around midnight, depending on your time zone:
The text was updated successfully, but these errors were encountered:
ActiveSupport uses Time.now, which returns the system time without taking into account the Rails application's time zone when the request is completed:
Thus, the data in the redis is created with local time.
However, when reading data from the redis, Time.current is used, which makes the data completely unavailable for a certain period of time around midnight, depending on your time zone:
The text was updated successfully, but these errors were encountered: