我需要使用查找功能从mongoDB中随机查找5个文档。我使用LoopBack 4框架。我已经尝试使用示例(在评论中)
const userParties: IndividualParty[] = (await find(
this.logger,
{
where: {
and: [
{ _id: { nin: ids.map(id => id) } },
{ gender: { inq: gender } },
],
},
//sample: { size: 5 },
//limit: 5,
} as Filter<IndividualParty>,
this.partyRepository,
)) as IndividualParty[];
答案 0 :(得分:0)
我不熟悉Loopback,但是使用纯节点和节点MongoDB驱动程序,这是我能想到的最短的示例:
var run = async function() {
const conn = await require('mongodb').MongoClient.connect('mongodb://localhost:27017', {useNewUrlParser: true})
let agg = [
{'$match': {'_id': {'$gte': 50}}},
{'$sample': {'size': 5}}
]
let res = await conn.db('test').collection('test').aggregate(agg).toArray()
console.log(res)
await conn.close()
}()
在包含_id
从0到99的集合中,这将随机输出5个_id
大于50的文档。示例输出:
[ { _id: 60 }, { _id: 77 }, { _id: 84 }, { _id: 96 }, { _id: 63 } ]
您需要使上面的示例与Loopback一起使用,但是基本思想就在那里。
注意:
您需要aggregation而不是find()
。
请仔细阅读$sample documentation,并特别注意其behavior:
$ sample使用两种方法之一来获取N个随机文档,具体取决于集合的大小,N的大小以及$ sample在管道中的位置。
$sample
在管道中的位置很重要。如果您需要选择集合的一个子集以通过$sample
阶段进行$match
(如上例所示),则需要确保要采样的子集在16 MB以内(MongoDB内存排序的限制)。