Mongo shell 3.2显示不存在的集合?

时间:2015-12-13 11:03:37

标签: mongodb

MongoDB 3.2,mongo shell显示result集合,但删除和统计信息报告该集合不存在。

> show collections
cronHistory
logs
result 
system.indexes
system.profile

> db.result.stats()
{ "ok" : 0, "errmsg" : "Collection [logs.result] not found." }

> db.result.drop()
false

如果我插入result集合,则会创建一个新集合:

> db.result.insert({})
WriteResult({ "nInserted" : 1 })
> show collections
cronHistory
logs
result
result 
system.indexes
system.profile
> 

mongoshell中显示的鬼结果集是什么?

0 个答案:

没有答案