我试图通过缓存数据库查询来提高应用程序的性能。这些都是简单的查询,因为我需要加载和缓存所有对象。
下面是我的application_controller.rb的简短版本:
class ApplicationController < ActionController::Base
protect_from_forgery
def show_all
load_models
respond_to do |format|
format.json { render :json => {"items" => @items}
}
end
end
protected
def load_models
@items = Rails.cache.fetch "items", :expires_in => 5.minutes do
Item.all
end
end
end
但是当我尝试加载这个页面时,我得到这个错误:
ArgumentError in ApplicationController#show_all
undefined class/module Item
我一直在遵循Heroku在这里发布的低级缓存指南:https://devcenter.heroku.com/articles/caching-strategies#low-level-caching
有什么想法我可以做这里得到缓存工作吗?有没有更好的方法来做到这一点?
我通过在Rails.cache.fetch
中存储编码JSON而不是原始ActiveRecord对象来修复此问题。然后检索存储的JSON,对其进行解码,并为视图呈现它。完成后的代码如下所示:
def show_all
json = Rails.cache.fetch "Application/all", :expires_in => 5.minutes do
load_models
obj = { "items" => @items }
ActiveSupport::JSON.encode(obj)
end
respond_to do |format|
format.json { render :json => ActiveSupport::JSON.decode(json) }
end
end
def load_models
@items = Item.all
end