千家信息网

mongodb查询size大于1的内嵌list的document

发表于:2025-01-19 作者:千家信息网编辑
千家信息网最后更新 2025年01月19日,db.user_profile.find({ $where: "this.disk_rack.length > 1" } )但是这种js引擎执行的会非常慢更好的办法是CreateextrafieldN
千家信息网最后更新 2025年01月19日mongodb查询size大于1的内嵌list的documentdb.user_profile.find({ $where: "this.disk_rack.length > 1" } )但是这种js引擎执行的会非常慢
更好的办法是CreateextrafieldNamesArrayLength, update it with names array length and then use in queries:
db.accommodations.find({"NamesArrayLength": {$gt: 1} });

It will be better solution, and will work much faster (you can create index on it).


0