feat: use db.sortedSetsAdd

This commit is contained in:
Barış Soner Uşaklı
2019-06-19 20:01:20 -04:00
parent 29a124c412
commit 7e54d7aa35
3 changed files with 13 additions and 21 deletions

View File

@@ -261,19 +261,12 @@ module.exports = function (Topics) {
if (!parseInt(mainPid, 10)) {
Topics.setTopicField(tid, 'mainPid', postData.pid, next);
} else {
async.parallel([
function (next) {
db.sortedSetAdd('tid:' + tid + ':posts', postData.timestamp, postData.pid, next);
},
function (next) {
var upvotes = parseInt(postData.upvotes, 10) || 0;
var downvotes = parseInt(postData.downvotes, 10) || 0;
var votes = upvotes - downvotes;
db.sortedSetAdd('tid:' + tid + ':posts:votes', votes, postData.pid, next);
},
], function (err) {
next(err);
});
const upvotes = parseInt(postData.upvotes, 10) || 0;
const downvotes = parseInt(postData.downvotes, 10) || 0;
const votes = upvotes - downvotes;
db.sortedSetsAdd([
'tid:' + tid + ':posts', 'tid:' + tid + ':posts:votes',
], [postData.timestamp, votes], postData.pid, next);
}
},
function (next) {