我正在尝试在环境/development.rb 中使用类似的内容配置 Rails 3 cache_store:
config.cache_store = :memory_store, {:size => 64.megabytes, :expires_in => 5.minutes}
但是当我启动服务器时,我得到:
undefined method `megabytes' for 64:Fixnum (NoMethodError)
可能还没有加载一些东西。
我的问题是:在哪里配置它们的正确位置?我应该把这段代码放在哪里?