Merge remote-tracking branch 'origin/master' into mongodb-3.0-driver-2.0

This commit is contained in:
Barış Soner Uşaklı
2015-03-13 13:14:43 -04:00
152 changed files with 1790 additions and 1314 deletions

View File

@@ -204,14 +204,17 @@ module.exports = function(db, module) {
if (!key) {
return callback();
}
var scoreQuery = {};
var query = {_key: key};
if (min !== '-inf') {
scoreQuery.$gte = min;
query.score = {$gte: min};
}
if (max !== '+inf') {
scoreQuery.$lte = max;
query.score = query.score || {};
query.score.$lte = max;
}
db.collection('objects').count({_key: key, score: scoreQuery}, function(err, count) {
db.collection('objects').count(query, function(err, count) {
callback(err, count ? count : 0);
});
};