簡(jiǎn)單索引
# 格式
db.collection.createIndex({key: option})
# 示例:給 xx 集合中的 insert_time 添加索引,1升序,-1降序
db.xx.createIndex({"insert_time": 1})
本文摘自 :https://www.cnblogs.com/
海量資源,盡在掌握
# 格式
db.collection.createIndex({key: option})
# 示例:給 xx 集合中的 insert_time 添加索引,1升序,-1降序
db.xx.createIndex({"insert_time": 1})
本文摘自 :https://www.cnblogs.com/