我們有Rails 4.2應用程序在生產中運行,具有以下配置(與緩存相關)。我們迄今尚未實施任何緩存技術(默認設置)。 config.action_controller.perform_caching = true
# Use a different cache store in production.
# config.cache_store = :mem_cache_store
我遇到
我正在處理的項目是控制檯風格的應用程序,根本無法訪問任何持久對象。我們所有的模型都是臨時對象,可以擴展到Hashie::Mash,並通過訪問各種API調用來動態填充。 我正在研究Rails fragment caching,這些示例暗示片段緩存機制依賴於持久性模型。 我正在尋找不假設持久模型的片段緩存的示例。
我正在玩片段緩存,我已閱讀指南並觀看了railscast。 我試圖做一個基本show動作有些片段緩存: 控制器: class PostsController < ApplicationController
before_action :set_post, only: [:show]
def show
end
private
# Use call