我正在为我们的 Application 使用 Mongo DB。
为了首先优化应用程序,我们首先开始对 Mongo DB COllections 进行索引。
我在下面的网络中看到了一个示例,说明如何对集合进行索引
db.products.ensureIndex( { "category": 1, "item": 1 } )
请让我知道值 1 在这里表示什么?这是标准吗??
我正在为我们的 Application 使用 Mongo DB。
为了首先优化应用程序,我们首先开始对 Mongo DB COllections 进行索引。
我在下面的网络中看到了一个示例,说明如何对集合进行索引
db.products.ensureIndex( { "category": 1, "item": 1 } )
请让我知道值 1 在这里表示什么?这是标准吗??
它表示索引中键的顺序。1 表示升序,-1 表示降序。http://docs.mongodb.org/manual/core/indexes/中的更多详细信息