1class PostsController 2 caches_page :index 3 4 def index 5 @posts = Post.all 6 end 7end 8 9class PostsController 10 ... 11 def clear 12 expire_page :action => :index 13 end 14end 15 16Rails.cache.clear