faster checkAndReplace

still need a better solution for this uniqueId business but this is
better than before.
v1.18.x
barisusakli 11 years ago
parent 8aea4ad7fa
commit 7c00bce63c

@ -135,52 +135,40 @@ var async = require('async'),
function checkReplace(uniqueId, uid, newNotifObj, callback) { function checkReplace(uniqueId, uid, newNotifObj, callback) {
var replace = false, matched = false; var replace = false, matched = false;
async.parallel([ function checkAndRemove(set, next) {
function(next) { db.getSortedSetRange(set, 0, -1, function(err, nids) {
db.getSortedSetRange('uid:' + uid + ':notifications:unread', 0, -1, function(err, nids) { if (err || !nids || !nids.length) {
if (nids && nids.length > 0) { return next(err);
async.each(nids, function(nid, next) { }
Notifications.get(nid, uid, function(nid_info) {
if (nid_info && nid_info.uniqueId === uniqueId) { var keys = nids.map(function(nid) {
matched = true; return 'notifications:' + nid;
if ((nid_info.importance || 5) >= newNotifObj.importance) { });
replace = true;
db.sortedSetRemove('uid:' + uid + ':notifications:unread', nid); db.getObjectsFields(keys, ['uniqueId', 'importance'], function(err, nid_infos) {
} if (err) {
} return next(err);
next();
});
}, function(err) {
next();
});
} else {
next();
} }
nid_infos.forEach(function(nid_info) {
if (nid_info && nid_info.uniqueId === uniqueId) {
matched = true;
if ((nid_info.importance || 5) >= newNotifObj.importance) {
replace = true;
db.sortedSetRemove(set, nid_info.nid);
}
}
});
}); });
});
}
async.parallel([
function(next) {
checkAndRemove('uid:' + uid + ':notifications:unread', next);
}, },
function(next) { function(next) {
db.getSortedSetRange('uid:' + uid + ':notifications:read', 0, -1, function(err, nids) { checkAndRemove('uid:' + uid + ':notifcations:read', next);
if (nids && nids.length > 0) {
async.each(nids, function(nid, next) {
Notifications.get(nid, uid, function(nid_info) {
if (nid_info && nid_info.uniqueId === uniqueId) {
matched = true;
if ((nid_info.importance || 5) >= newNotifObj.importance) {
replace = true;
db.sortedSetRemove('uid:' + uid + ':notifications:read', nid);
}
}
next();
});
}, function(err) {
next();
});
} else {
next();
}
});
} }
], function(err) { ], function(err) {
if (!err) { if (!err) {

Loading…
Cancel
Save