1

我正在使用devise,kaminaridalli(memcached).
我刚刚尝试在加载时实现缓存http://example.com/communities?sort=popular

我试着像下面这样编码。但是,似乎缓存存储不起作用。
看起来它每次重新加载页面时仍在发送 SQL ......

怎么了?

然后,如果可能的话,我想在用户创建或编辑“社区”记录后清除所有包含字符串“community_index_sort_by_”的存储缓存。

配置/环境/development.rb

...
config.consider_all_requests_local       = true
config.action_controller.perform_caching = true
config.cache_store = :dalli_store
...

community_controller.rb

def index

    @key = "community_index_sort_by_" + params[:sort].to_s + "_page_" + params[:page].to_s

    if params[:sort] == 'popular'
        unless Rails.cache.fetch(:controller => "communities", :action => "index",  :action_suffix => @key)
            @communities = Community.scoped.page(params[:page]).order("cached_votes_up DESC")
        end
    elsif params[:sort] == 'latest'
        @communities = Community.scoped.page(params[:page]).order("created_at DESC")
    end

end

我没有触及任何视图文件

4

1 回答 1

1

缓存片段不是通过缓存调用在视图中创建的吗?

在视图中,不要忘记在键中包含参数,例如页面偏移量:

<% cache 'the_cache_fragment_key' do %>
...the view...
<% end %>

在控制器中:

unless fragment_exist?('cache_fragment_key')
 ...cache fragment doesn't exist, make a call for it...
end

这个rails cast可能会有所帮助。 http://railscasts.com/episodes/90-fragment-caching

为了在更新时清除缓存,rails sweepers 非常有用。您可以为模型方法或控制器操作定义方法。http://guides.rubyonrails.org/caching_with_rails.html#sweepers

于 2013-01-28T21:02:55.960 回答