我在woeids.trends_country_capital
中有一系列 35 Yahoo WOEIDs ,我想用它来获取各个WOEIDS的推特趋势。现在twitter的趋势API限制为1 req / min,所以我想以 1 / min 来获取35个WOEID的趋势,一旦完成所有将重复无限期
node module - cron
这是我从很多人那里测试过的一个代码,由于内部cron无法正常工作,因此肯定无法正常工作。我尝试过的另一个解决方案是将{strong> 35 位置拆分为三个cron作业15, 15, 5
,但我无法理解如何让第一个cron作业等待。当我分裂时,这是我正在努力实现的流程:
const worldWide = new CronJob({
cronTime: '0 */35 * * * *',
onTick: function() {
_(woeids.trends_country_capital).forEach(woeid => {
new CronJob('0 */1 * * * *', function() {
trendsCountry.get('/trends/place', {id: woeid}, function(error, trends, response) {
if (!error) {
dbCountries.countries.update(
{ woeid: woeid },
{
woeid: woeid,
trends: trends[0].trends,
lastUpdated: new Date().getTime()
},
{ upsert: true },
function (err, data) {
console.log(err, data);
}
)
}
});
}, null, true, 'America/Los_Angeles');
});
},
start: false,
timeZone: 'America/Los_Angeles'
});