浏览代码

Fix unintended cache (#6214)

master
Yamagishi Kazutoshi 6 年前
committed by Eugen Rochko
父节点
当前提交
da809f9eec
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      app/controllers/application_controller.rb

+ 2
- 2
app/controllers/application_controller.rb 查看文件

@@ -124,15 +124,15 @@ class ApplicationController < ActionController::Base

def render_cached_json(cache_key, **options)
options[:expires_in] ||= 3.minutes
options[:public] ||= true
cache_key = cache_key.join(':') if cache_key.is_a?(Enumerable)
cache_public = options.key?(:public) ? options.delete(:public) : true
content_type = options.delete(:content_type) || 'application/json'

data = Rails.cache.fetch(cache_key, { raw: true }.merge(options)) do
yield.to_json
end

expires_in options[:expires_in], public: options[:public]
expires_in options[:expires_in], public: cache_public
render json: data, content_type: content_type
end



正在加载...
取消
保存