-1

我使用 Rails.cache.fetch(method_name, :expires_in => 15.minutes) 来缓存数据。当我更新列时,更新的列仅在 15 分钟后显示在页面中。有没有办法只清除更新记录的缓存?

4

1 回答 1

2

您可以使用清除整个缓存Rails.cache.clear

要清除单个条目,请使用Rails.cache.delete(method_name)

于 2013-09-13T14:32:40.823 回答