标签: ruby-on-rails json ruby-on-rails-3 rubygems
我们在Rails 3.2.12中安装了OJ gem来加速JSON转换,但在尝试使用代码时发现NoMemoryError (failed to allocate memory)错误。
NoMemoryError (failed to allocate memory)
这是我们在代码中使用gem的地方:
# Render results render :json => { :version => version, :foo => Oj.dump(foo), :bar => Oj.dump(bar) }
为什么会这样?