proper score aggregation #1562

v1.18.x
barisusakli 11 years ago
parent 5e51895982
commit b7fcde446b

@ -163,15 +163,27 @@ module.exports = function(db, module) {
stop = -1; stop = -1;
} }
var limit = stop - start + 1; var limit = stop - start + 1;
if (limit < 0) { if (limit <= 0) {
limit = 0; limit = 0;
} }
db.collection('objects').find({_key:{$in: sets}}, {fields: {_id: 0, value: 1, score: 1}}) var pipeline = [
.limit(limit) { $match: { _key: {$in: sets}} },
.skip(start) { $group: { _id: {value: '$value'}, totalScore: {$sum : "$score"}} },
.sort({score: sort}) { $sort: { totalScore: sort} }
.toArray(function(err, data) { ];
if (start) {
pipeline.push({ $skip: start });
}
if (limit > 0) {
pipeline.push({ $limit: limit });
}
pipeline.push({ $project: { _id: 0, value: '$_id.value' }});
db.collection('objects').aggregate(pipeline, function(err, data) {
if (err || !data) { if (err || !data) {
return callback(err); return callback(err);
} }
@ -179,11 +191,6 @@ module.exports = function(db, module) {
data = data.map(function(item) { data = data.map(function(item) {
return item.value; return item.value;
}); });
data = data.filter(function(value, index, array) {
return array.indexOf(value) === index;
});
callback(null, data); callback(null, data);
}); });
} }

Loading…
Cancel
Save