我正在关注“使用Rails 4进行敏捷Web开发”指南并进入了一个关于缓存的部分.以下是要遵循的步骤:
>在config / environments / development.rb中
config.action_controller.perform_caching = true
>在app / models / product.rb中
def self.latest Product.order(:updated_at).last end
>在views / store / index.html.erb中
<% cache ['store',Product.latest] do %> <% @products.each do |product| %> <% cache ['entry',product] do %> <div class="entry"> <%= image_tag(product.image_url) %> <h3><%= product.title %></h3> <%= sanitize(product.description) %> <div class="price_line"> <span class="price"><%= number_to_currency(product.price) %></span> </div> </div> <% end %> <% end %> <% end %>
为了验证现金是否有效,该书说:“至于验证这是否有效,不幸的是没有太多可看的.如果你去那个页面,你应该看到没有任何变化,这实际上是重点!您可以做的最好是在缓存块内的任何位置更改模板,而不更新任何产品并验证您没有看到该更新,因为页面的缓存版本尚未更新“.
但是,当我尝试在缓存块中的代码中添加“Hello”字符串时,它会出现在页面上.我已经完成了所有服务器重启,什么不是.
但是,当我在本地主机上重新加载页面时,我确实看到了这一行
Cache digest for app/views/store/index.html.erb: 6c620ede1d4e824439a7b0e3b177620f
这不是他们的时候
config.action_controller.perform_caching = false
链接到git hub repo:https://github.com/BrianLobdell/depot
谢谢,
布赖恩
解决方法
Rails在更改文件时更新缓存,因此更容易操作缓存.
您可以使用Rails控制台中页面的缓存摘要检索缓存片段(摘要可能已更改,请确保使用最近的摘要!):
key = ['store',Product.latest,'6c620ede1d4e824439a7b0e3b177620f'] ActionController::Base.new.read_fragment(key)
这应该返回缓存的片段.为了确保Ruby在提供页面时实际上访问缓存,您可以将片段替换为其他内容:
ActionController::Base.new.write_fragment(key,'it works!')
重新加载页面,你应该看到“它的工作原理!”.