如何在Comfortable Mexican Sofa中更新片段缓存?

时间:2017-01-27 15:45:02

标签: ruby-on-rails caching comfortable-mexican-sofa

我正在使用片段缓存来加快Comfortable Mexican Sofa的渲染时间。但是,当我更新它时,我无法弄清楚如何让它使特定对象的缓存失效。

我正在使用Comfy作为我正在建立的公司网站的CMS。为了允许动态页面内容,我已经设置了它,因此它将页面目录呈现为内容块。

class WelcomeController < ApplicationController
  def index
    @testimonials = Comfy::Cms::Page.find_by_full_path!("/testimonials").children
    @clients = Comfy::Cms::Page.find_by_full_path!("/clients").children
    @recent_blogs = Comfy::Cms::Page.find_by_full_path!("/blog").children.published.last(4)
    @team = Comfy::Cms::Page.find_by_full_path!("/team").children
  end

end

然后我使用CMS提供的cms_block_content助手渲染集合。

<% @clients.each do | client |%>
    <img class="client__logo lazy" data-original="<%=cms_block_content(:client_logo, client).file.url%>">
<%end%>

我还介绍了一些片段缓存,因为所有内联渲染都大大减慢了页面的加载速度。

然而,我遇到了一个问题。当我创建或删除新内容时,它会在页面上显示/消失,但是,当我更新内容时,页面上的内容不会更新。更新内容似乎没有使缓存的内容过期(如果您运行Rails.cache.clear,则加载更新的内容)。

我研究了创建缓存清理程序as posited in the CMS documentation,但我不太清楚如何继续,因为我不确定将哪些参数传递给实际的expire_fragment方法。

class CmsAdminSweeper < ActionController::Caching::Sweeper
  observe Comfy::Cms::Page

  def after_update(record)
    do_sweeping(record)
  end

  def do_sweeping(record)
    # return unless modification is made from controller action
    return false if session.blank? || assigns(:site).blank?

    Rails.logger.info("CmsAdminSweeper.do_sweeping in progress...")

    expire_fragment({ controller: '/welcome', action: 'index', id: record.id})
  end
end

这是最好的方法吗?如果是这样,我可以将什么传递给expire_fragment方法?

非常感谢!

汤姆

1 个答案:

答案 0 :(得分:1)

事实上,正确的答案一直盯着我,我只是没有意识到这一点。我需要做的只是传递记录。

expire_fragment(record)

然而,当我第一次尝试它时它没有工作的原因是a digest is added to the cache when it is saved。这意味着您不能手动使它们过期。因此,当您缓存视图时,您需要确保跳过摘要。

<% @clients.each do | client |%>
     <% cache client, skip_digest: true do %>
          <img class="client__logo lazy" data-original="<%=cms_block_content(:client_logo, client).file.url%>">
     <%end%>
 <%end%>

瞧瞧!有用。