gpt4 book ai didi

mongodb - 查找具有最接近整数值的文档

转载 作者:IT老高 更新时间:2023-10-28 13:09:49 27 4
gpt4 key购买 nike

假设我有一个文档集合,其中包含一个 float 的 ratio 属性。

{'ratio':1.437}

如何编写查询以找到与给定整数值最接近的单个文档,而不使用驱动程序将它们全部加载到内存中并找到 abs(x-ratio) 值最小的文档?

最佳答案

有趣的问题。我不知道您是否可以在一个查询中完成,但您可以在两个查询中完成:

var x = 1; // given integer
closestBelow = db.test.find({ratio: {$lte: x}}).sort({ratio: -1}).limit(1);
closestAbove = db.test.find({ratio: {$gt: x}}).sort({ratio: 1}).limit(1);

然后您只需检查两个文档中的哪个文档的 ratio 最接近目标整数。

MongoDB 3.2 更新

3.2 版本增加了对 $abs 的支持。绝对值聚合运算符现在允许在单个 aggregate 查询中完成此操作:

var x = 1;
db.test.aggregate([
// Project a diff field that's the absolute difference along with the original doc.
{$project: {diff: {$abs: {$subtract: [x, '$ratio']}}, doc: '$$ROOT'}},
// Order the docs by diff
{$sort: {diff: 1}},
// Take the first one
{$limit: 1}
])

关于mongodb - 查找具有最接近整数值的文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13275491/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com