Commit a6d6cfaf authored by Josh Frye's avatar Josh Frye

Change ttl to 1 minute

parent d8a292d9
...@@ -26,7 +26,7 @@ class BroadcastMessage < ActiveRecord::Base ...@@ -26,7 +26,7 @@ class BroadcastMessage < ActiveRecord::Base
default_value_for :font, '#FFFFFF' default_value_for :font, '#FFFFFF'
def self.current def self.current
Rails.cache.fetch("broadcast_message_current", expires_in: 5.minutes) do Rails.cache.fetch("broadcast_message_current", expires_in: 1.minute) do
where("ends_at > :now AND starts_at <= :now", now: Time.zone.now).last where("ends_at > :now AND starts_at <= :now", now: Time.zone.now).last
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment