如Caching with Rails Guide中所述,我向config/environment/staging.rb
添加了以下行:
Rails.application.configure do
...
config.cache_store = :memory_store, { size: 64.megabytes }
...
end
这在启动Puma服务器时引发了错误:
undefined method `megabytes' for 64:Integer
需要acctive_suport
顶部的相应staging.rb
模块:
require 'active_support/core_ext/numeric/bytes'
...
解决了这个问题。
我想念什么?谢谢。
使用的Rails版本:5.2.2
,API模式。
Ruby:2.6.1
。