我的Rails应用程序必须进行大量的外部http调用。有时,冗余的http调用来处理请求。所以,我正在寻找一种缓存外部http调用的方法。应该使用内存来保存缓存数据的方式。请帮忙。
答案 0 :(得分:8)
看起来你可以使用Rails缓存来实现这一目标,尽管我还没有真正测试过它。
results = Rails.cache.fetch(cache_key) do # You could use a unique URL as part of the cache key
# HTTP request
# Return results from processing the response
end
有关Rails缓存的更多信息http://guides.rubyonrails.org/caching_with_rails.html