2010-10-05 107 views
1

如何在軌道中進行頁面緩存3.是否有任何插件或創業板? page_cache_fu是否可以用於rails 3?頁面緩存軌道3

回答

2

您可以在控制器中直接做到這一點。以下是直接來自Rails指南

class ProductsController < ActionController 
    caches_page :index 
    def index 
    @products = Products.all 
    end 
end