Updated How to request a new tracker (markdown)

garfield69 2024-05-11 21:06:49 +12:00
parent 7e75e3df57
commit 1cf0982b10
1 changed files with 2 additions and 1 deletions

@ -18,7 +18,8 @@ So please, get an invite and be ready to invite the staff member who will implem
- On the site's search results page:
- If there are titles (or posters) for each torrent/magnet, then we can usually code an indexer in yaml using the Cardigann processor.
- If there are titles (or posters) with groups of related torrents/magnets, then the indexer can usually be coded in C#.
- However, if there are only titles (or posters), and you have to navigate to the corresponding details page to find the multiple torrent/magnets, then these sites are not suitable for indexing. This is because for the indexer to complete the torrent search results, Jackett would need to fetch the details page for every title in the search results page, (potentially up to 100 pages), and no site is going to want that kind of bulk traffic, it's a quick way to get your IP banned for bot activity, especially if teamed with automation software like Sonarr or Radarr.
- However, if there are only titles (or posters), and you have to navigate to the corresponding details page to find the multiple torrent/magnets, then these sites are not suitable for indexing. This is because for the indexer to complete the torrent search results, Jackett would need to fetch the details page for every title in the search results page, (potentially up to 100 pages), and no site is going to want that kind of bulk traffic, it's a quick way to get your IP banned for bot activity, especially if teamed with automation software like Sonarr or Radarr.
Even if we add a request Delay between Gets of say 1 second, it would add up to 101 seconds (assuming the site responded in a timely manner to all requests) before results become available, which is getting close to the maximum timeout after which the Indexer would give up waiting.
- If the site supports an API:
- then this is preferred over the other method, HTML scraping.
- If the API returns JSON or XML then in most cases we can write the indexer in yaml.