4
我爲我的JSON API輸出使用Jbuilder,現在我想使用Rails 3.2.13的'cache_digest'gem添加緩存。Rails緩存摘要和Jbuilder
它工作正常,緩存模板被創建並從緩存中讀取,但問題是,如果我更改模型條目,如更改「標題」,它不會過期緩存,它仍然顯示舊的標題。
這是我的JBuilder模板索引:通過RailsAdmin接口
json.cache! "news" do |json|
json.array!(@news) do |news|
json.id news.id
json.title news.title
json.excerpt news.excerpt
json.content strip_links news.content
json.image news.image
json.source news.source
json.published_at news.published_at
json.created_at news.created_at
end
end
我改變屬性。