我的应用程序中的操作缓存到期时遇到了一些问题。
这是我的控制器:
class ToplistsController < ApplicationController
caches_action :songs, cache_path: :custom_cache_path.to_proc
def custom_cache_path
"#{params[:when]}-#{params[:what]}-#{params[:controller]}-#{params[:action]}"
end
def songs
# ...
end
end
我不知何故需要能够重置自定义缓存路径,但我无法弄清楚如何。
我已尝试使用this technique,但没有成功。它看起来像我的缓存引擎Dalli,它不支持regexp匹配器。
尝试使用此代码时出现此错误:
expire_fragment(/songs/)
ActiveSupport::Cache::DalliStore does not support delete_matched
我尝试使用这行代码进行调试,但它被忽略了。
before_filter only: [:songs]
expire_fragment(custom_cache_path)
end
我正在使用Rails 3.1.0.rc6,Dalli 1.0.5和Ruby 1.9.2。
答案 0 :(得分:0)
before_filter
块被动作缓存忽略了。
解决方案是使用片段缓存。
# Controller
class ToplistsController < ApplicationController
helper_method :custom_cache_path
before_filter only: [:songs]
if params[:reset_cache]
expire_fragment(custom_cache_path)
end
end
def custom_cache_path
"#{params[:when]}-#{params[:what]}-#{params[:controller]}-#{params[:action]}"
end
def songs
# ...
end
end
# View
<%= cache custom_cache_path do %>
Content that should be cached
<% end %>
答案 1 :(得分:0)
您可能还想查看解决方案here。通过他的方法,您可以使用额外参数使操作失效。