性能受到使用不同的影响

时间:2013-10-22 17:53:24

标签: mongodb scala casbah

以下代码给我带来了一些麻烦:

  /**
   *
   * finds all distinct values of HybridTypes for the Page Collection
   */
  def findDistinctTypeValues(): List[String] = {
    //cast all instances from Any to String
    val coll = dao.collection.distinct("hybridType") map (_.asInstanceOf[String])
    coll.toList
  }

mongo控制台告诉我相应的查询持续大约4秒。 该字段是索引字符串。

我有什么特别错的吗?

更新:这是runco​​mmand的输出:

db.runCommand({distinct: 'pages',key:'hybridType'})
     "stats" : {
             "n" : 2492192,
             "nscanned" : 2492192,
             "nscannedObjects" : 0,
             "timems" : 4247,
             "cursor" : "BtreeCursor hybridType_1"
     },
     "ok" : 1

看起来它正在执行全表扫描? :/

0 个答案:

没有答案