ruby-on-rails – MongoDB不断查询命名空间

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – MongoDB不断查询命名空间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的rails应用程序中我使用mongoid并在日志之前几乎每个查询,即使在相同的请求,它也
MONGODB dbname['system.namespaces'].find({})

这是做什么的?这是性能问题吗?我可以以某种方式缓存,所以它不必一直这样做或至少阻止它堵塞日志?

编辑:这是日志的相关部分

Processing by FilesController#new as HTML
Started GET "/" for 127.0.0.1 at Fri Sep 09 15:59:43 -0700 2011
[Barista] Compiling all scripts for barista
[Barista] Compiling all coffeescripts
[Barista] Copying all javascripts
MONGODB db['system.namespaces'].find({})
MONGODB db['users'].find({:_id=>BSON::ObjectId('4e6a949935d3e9726b000001')})
MONGODB db['system.namespaces'].find({})
MONGODB db['files'].find({:token=>"nonssb38"})

解决方法

这种情况发生在Mongoid,直到3.0出现.请注意,这只发生在开发模式中,所以它没什么大不了的.

参考文献:

> https://github.com/mongoid/mongoid/issues/1465
> https://github.com/mongoid/mongoid/issues/1291

原文链接:https://www.f2er.com/ruby/269671.html

猜你在找的Ruby相关文章