创建索引到时间戳只有mongoldb

时间:2017-11-14 09:38:17

标签: mongodb nosql

我是MongoDB的新手。我有一个MongoDB数据库,其中包含每分钟的文档(时间戳字段)。为了优化查询性能,我创建了一个复合索引:

db.data.createIndex({dId:1,ts:-1})

但我的查询有:

"$match":{ dId:  deviceId,year_agg:year_input,month_agg:month_input }

我希望仅在时间戳的月份创建索引,以便减少查询时间。这可能吗?

0 个答案:

没有答案