How can the cache for the views with translations be invalidated?

坚强是说给别人听的谎言 提交于 2019-12-05 11:13:16

问题


Imagine you have two views with code like the following:

controller_a/a.html.erb

  <%= content_tag(:div) do %>
     <%= I18n.t "some.key" %>
  <% end %>

controller_b/b.html.erb

  <%= content_tag(:div) do %>
     <%= I18n.t "some.key" %>
  <% end %>

  <%= content_tag(:div) do %>
     <%= I18n.t "some.other_key" %>
  <% end %>

So, a.html.erb is on controller_a#a, while b.html.erb is on controller_b#b. Both actions are cached by caches_action. How can I make sure that when I change the some.key translation key, both views are invalidated? How could I build a generic mechanism?


回答1:


Say, in your ApplicationController create the following class-method (or in a lib and extend by it):

def self.i18n_digest(*scopes)
    Digest::MD5.hexdigest I18n.t(scopes).to_s
end

Then you can use :cache_path option in your caches_action this way:

caches_action :some_action, cache_path: { some_key: i18n_digest('some', 'foo') }

Just make sure that you set the locale in a before_filter before this statement.

Docs on cache_path.

Note: I'm using the scope of translation ('some') to get all its nested messages as a hash.



来源:https://stackoverflow.com/questions/11055056/how-can-the-cache-for-the-views-with-translations-be-invalidated

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!