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中显示的鬼结果集是什么?