expires_at=(time)
Set a new time when the entry will expire.
# File activesupport/lib/active_support/cache.rb, line 605 def expires_at=(time) if time @expires_in = time.to_f - @created_at else @expires_in = nil end end