-2

Background

I'm trying to add some active trackers for transmission daemon to speed it up as I have done this before when using aria2.

But all the resources I found is how to add trackers to a torrent.

Question

So I'm wondering which is tracker related to? A torrent file or the downloader? If is the torrent file, how does I add trackers in aria2? The only way I can image is that aria2 automatically adds trackers to the added torrent.

BTW, how to add default trackers in transmission daemon just like in aria2?

Community
  • 1
  • 1
Sraw
  • 18,892
  • 11
  • 54
  • 87
  • 1
    Is this a programming related question? – musefan May 23 '18 at 08:28
  • Umm... I'm not sure? Maybe yes... as tags exist? – Sraw May 23 '18 at 08:30
  • 1
    Lots of tags exists, but that doesn't make them OK. My instinct is that this question is off-topic as it is not programming related. I am not going to vote to close it though as I am not 100% sure, which is why I asked you. I think you seem to believe it isn't programming related either, so you probably won't get any useful answers. You may want to look for a more appropriate Stack Exchange site to ask this on, though I am not sure which one (if any) would be the best fit – musefan May 23 '18 at 08:33

1 Answers1

-1

Trackers can be centralized servers which you can request list of peers from.

The torrent file and the download don't go through the tracking server, the tracking server simply tells you from whom you can ask for pieces of the file from.

If you ask for more trackers, you won't download faster, you'll just have a wider pool of peers to pick from. If you want the download to be faster, you'll have to increase the amount of peers you are downloading from. (Tracking servers usually return 80 at a time I think in any case)

There are decentralized means of doing this using DHT (distributed hash table)

Nevermore
  • 7,141
  • 5
  • 42
  • 64