ruby on rails-用于分页页面的expire_action


  • 红宝石2.2.2p95
  • 轨道4.2.1

我的缓存生成正在缓慢进行。

索引页

http://localhost:3001/produtos
Write fragment views/localhost:3001/produtos (11.0ms)

分页页面

http://localhost:3001/produtos/pagina/2
Write fragment views/localhost:3001/produtos/pagina/2 (15.3ms)

但我很难让它们过期。我正在使用一个清除器使我的操作缓存过期,但我还没有弄清楚如何使分页页面过期。

class ProductsController < ApplicationControlle
   caches_action [:show, :index]
end

class Admin::ProductsController < Admin::BaseController
    cache_sweeper :product_sweeper
end
class ProductSweeper < ActionController::Caching::Sweeper
    observe Product
    def after_save(product)
        expire_action products_url
        expire_action category_product_url(category_id: product.category.slug)
    end
end

如何使分页页面过期

http://localhost:3001/produtos/pagina/2
http://localhost:3001/produtos/pagina/3
http://localhost:3001/produtos/pagina/4
...

等等?

缓存过期是

如果你真的想担心缓存过期,你可以使用这样的解决方案:分页和页面缓存清理程序

在Rails4中,处理w/cache过期的推荐方法是使用缓存键,而不用担心缓存过期:基于密钥的缓存过期如何工作

可以将Product.maximum(:updated_at)用作所有产品索引和分页页面的缓存键的一部分。当其中一个产品更新时,更改所有产品索引页面的键可能比尝试猜测哪些页面会受到更改的影响要好。

如果允许用户更改每页的记录数,那么这也需要成为缓存密钥的一部分。

相关内容

  • 没有找到相关文章

最新更新