Merge remote-tracking branch 'refs/remotes/origin/master' into develop
commit
43bec4cb45
@ -0,0 +1,29 @@
|
||||
'use strict';
|
||||
|
||||
var async = require('async');
|
||||
|
||||
var db = require('../../database');
|
||||
|
||||
module.exports = {
|
||||
name: 'New sorted set cid:<cid>:tids:lastposttime',
|
||||
timestamp: Date.UTC(2017, 9, 30),
|
||||
method: function (callback) {
|
||||
var progress = this.progress;
|
||||
|
||||
require('../../batch').processSortedSet('topics:tid', function (tids, next) {
|
||||
async.eachSeries(tids, function (tid, next) {
|
||||
db.getObjectFields('topic:' + tid, ['cid', 'timestamp', 'lastposttime'], function (err, topicData) {
|
||||
if (err || !topicData) {
|
||||
return next(err);
|
||||
}
|
||||
progress.incr();
|
||||
|
||||
var timestamp = topicData.lastposttime || topicData.timestamp || Date.now();
|
||||
db.sortedSetAdd('cid:' + topicData.cid + ':tids:lastposttime', timestamp, tid, next);
|
||||
}, next);
|
||||
}, next);
|
||||
}, {
|
||||
progress: this.progress,
|
||||
}, callback);
|
||||
},
|
||||
};
|
Loading…
Reference in New Issue