标签: node.js mongodb indexing mongoose
在mongodb中创建多于1个单字段索引是否有效?:
假设我有一系列产品,在某些查询中我想通过类别查找,而在其他查询中我想通过日期
为该集合创建2个单字段索引是否有效? 猫鼬:
schema.index({ Category:1}); schema.index({ date: 1 });