diff --git a/src/events.js b/src/events.js index 0617d79029..662375114c 100644 --- a/src/events.js +++ b/src/events.js @@ -68,10 +68,10 @@ events.log = function (data, callback) { async.parallel([ function (next) { - db.sortedSetAdd('events:time', data.timestamp, eid, next); - }, - function (next) { - db.sortedSetAdd('events:time:' + data.type, data.timestamp, eid, next); + db.sortedSetsAdd([ + 'events:time', + 'events:time:' + data.type, + ], data.timestamp, eid, next); }, function (next) { db.setObject('event:' + eid, data, next); diff --git a/src/topics/posts.js b/src/topics/posts.js index 42efd64a4f..5f0aeae722 100644 --- a/src/topics/posts.js +++ b/src/topics/posts.js @@ -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) { diff --git a/src/user/create.js b/src/user/create.js index 26395e2e4e..70dfa90fbf 100644 --- a/src/user/create.js +++ b/src/user/create.js @@ -74,7 +74,9 @@ module.exports = function (User) { db.incrObjectField('global', 'userCount', next); }, function (next) { - db.sortedSetAdd('username:uid', userData.uid, userData.username, next); + db.sortedSetsAdd([ + 'username:uid', 'user:' + userData.uid + ':usernames', + ], [userData.uid, timestamp], userData.username, next); }, function (next) { db.sortedSetAdd('username:sorted', 0, userData.username.toLowerCase() + ':' + userData.uid, next); @@ -92,9 +94,6 @@ module.exports = function (User) { function (next) { db.sortedSetsAdd(['users:postcount', 'users:reputation'], 0, userData.uid, next); }, - function (next) { - db.sortedSetAdd('user:' + userData.uid + ':usernames', timestamp, userData.username, next); - }, function (next) { groups.join('registered-users', userData.uid, next); },