Tag: 重量

全文search与重量在mongoose

据我所知,从3.8.9版本开始,mongoose支持全文search。 但我找不到一个好的文档! 我想做一些事情: db.collection.ensureIndex( // Fields to index { animal: "text", color: "text", pattern: "text", size: "text" }, // Options { name: "best_match_index", // Adjust field weights (default is 1) weights: { animal: 5, // Most relevant search field size: 4 // Also relevant } } ) 我可以用纯mongoose做到吗? 或者我必须使用一些像mongoose-text-search的插件? 如果没有重量? 我该怎么做?