Answer the question
In order to leave comments, you need to log in
What are the pitfalls in the work of the torrent tracker parser?
There is a parser of popular (and not so) torrent trackers. Initially created for myself, as a way to practice Node.js, but there was a desire to share. In this regard, some related questions have arisen:
async.parallel(parseFunctions)
) , and maybe more, as new trackers are added over time. And if nothing bad happens in the case of a single request, then how will the node react to 5-10-20 simultaneous requests?Answer the question
In order to leave comments, you need to log in
1 - the node doesn't care at all, everything will be executed not "simultaneously", but in turn anyway (node.js event loop), you just have to wait a little longer for the result if there are 1000 requests, not 10;
"5-10-20 simultaneous requests" is nothing at all
3 - there is certainly a possibility ^_^
The answer is somewhat different from your question, but if the task is to index the contents of torrents, then it may be more efficient to index DHT as, for example, magnetico and other projects do (there are also on node.js).
True, if the task is parsing descriptions for distributions, then yes, trackers are needed. But this creates a lot of problems.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question