在mongodb问题上的封顶集合

时间:2014-02-17 06:46:21

标签: performance mongodb set push capped-collections

我对上限集合进行了分析,发现上限集合没有性能提升。     我创建了一个名为test1的集合,其中包含20,000个数据,我使用相同的数据copyTo test2,并且指定的数据大小为true。我提出了以下查询来检查性能

 db.test1.find( { $query: { "group" : "amazonTigers"}, $explain: 1 } ).pretty()


 db.test2.find( { $query: { "group" : "amazonTigers"}, $explain: 1 } ).pretty()

 Both result in the same response time as 124ms...
  1. 更多结果,我不明白上限收藏是如何运作的?

  2. 我阅读了很多博客,但我无法找到mongo capped collection的正确工作原理。

  3. 我读到了上限集合的缺点,它给出了我们无法使用$ set和$ push。在指定集合条目的上限集合中是否存在任何其他缺点???

  4. 此致 哈利

0 个答案:

没有答案