通过 Nodejs 的多个 API 连接
Multiple API connections through Nodejs
我想连接到 theMovieDb api,并获取大量电影。 api 限制是每 10 秒 40 次调用,每个 IP 20 个连接。
如何在 node.js 中执行此操作?现在我一次有一个到 api 的 http 请求,但任何超过 40 次调用都会导致错误。
每 10 秒 40 个请求,20 个并发连接,因此在 "one thread" 我们将不得不等待大约 5 秒。
有一个名为 async 的适用于所有异步内容的很棒的库。
var loadOne = function (id, callback) {
// Do your stuff
// tell it to wait
setTimeout(callback, 5000);
}
async.mapLimit(arrayOfIds, 20, loadOne, function(err, results){
// results is now an array of stats for each file
});
我想连接到 theMovieDb api,并获取大量电影。 api 限制是每 10 秒 40 次调用,每个 IP 20 个连接。
如何在 node.js 中执行此操作?现在我一次有一个到 api 的 http 请求,但任何超过 40 次调用都会导致错误。
每 10 秒 40 个请求,20 个并发连接,因此在 "one thread" 我们将不得不等待大约 5 秒。
有一个名为 async 的适用于所有异步内容的很棒的库。
var loadOne = function (id, callback) {
// Do your stuff
// tell it to wait
setTimeout(callback, 5000);
}
async.mapLimit(arrayOfIds, 20, loadOne, function(err, results){
// results is now an array of stats for each file
});