我有这样的模型/架构
var TS=new Schema({
merchant_id: {
type: Number,
required: [true, "Merchant id is required"]
},
order_id: {
type: String,
required: [true, 'Order ID is required']
},
tx_tm: {
type: Date,
required: [true, 'Transcation time is required']
}
})
如果要搜索 tx_tm 和 merchant_id
,应该使用猫鼬为索引添加什么?现在我有
TS.index({
merchant_id: 1
});
TS.index({
tx_tm: 1
});
例如-给我所有商人ID为1且tx_tm小于此值且大于该值的文件