Ciekawy problem. Nie wiem, czy możesz to zrobić w jednym zapytaniu, ale możesz to zrobić w dwóch:
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);
Następnie po prostu sprawdzasz, który z dwóch dokumentów ma ratio
najbliżej docelowej liczby całkowitej.
Aktualizacja MongoDB 3.2
Wersja 3.2 dodaje obsługę $abs
operator agregacji wartości bezwzględnej, który pozwala teraz na wykonanie tego w pojedynczej aggregate
zapytanie:
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}
])