如何使 Rails 中的目录过期?
我有一个博客,其中/posts/
列出了所有帖子。控制器职位,行动索引。很标准的东西。
帖子使用 will_paginate 以 10 个为一组进行分页。
页面被缓存是这样的:
/posts/
/posts/index/2
/posts/index/3
/posts/index/4
...
/posts/index/134
/posts/index/135
...
etc..
当我需要使这些页面过期时,expire_page(posts_path)
不会做这项工作,它只会过期/posts.html
。
使分页页面过期的最佳方法是什么?由于页面数量不确定,我应该让整个/posts/index/
目录过期吗?如何使目录过期?
谢谢