The Best Working Torrent Indexes
This would pick the first two character from an md5 hash ( 00 – ff , 256 subdirectories) to generate the subdirectory.
Index of torrents
kickass-torrents-dump-parser-0.0.1: Parses kat.ph torrent dumps
category | Text.KickassTorrentsDumpParser |
InfoHash | |
1 (Type/Class) | Text.KickassTorrentsDumpParser |
2 (Data Constructor) | Text.KickassTorrentsDumpParser |
infoHash | Text.KickassTorrentsDumpParser |
katUrl | Text.KickassTorrentsDumpParser |
parseDump | Text.KickassTorrentsDumpParser |
Release | |
1 (Type/Class) | Text.KickassTorrentsDumpParser |
2 (Data Constructor) | Text.KickassTorrentsDumpParser |
ReleaseCategory | |
1 (Type/Class) | Text.KickassTorrentsDumpParser |
2 (Data Constructor) | Text.KickassTorrentsDumpParser |
ReleaseTitle | |
1 (Type/Class) | Text.KickassTorrentsDumpParser |
2 (Data Constructor) | Text.KickassTorrentsDumpParser |
title | Text.KickassTorrentsDumpParser |
torrentUrl | Text.KickassTorrentsDumpParser |
unInfoHash | Text.KickassTorrentsDumpParser |
unReleaseCategory | Text.KickassTorrentsDumpParser |
unReleaseTitle | Text.KickassTorrentsDumpParser |
unUrl | Text.KickassTorrentsDumpParser |
URL | |
1 (Type/Class) | Text.KickassTorrentsDumpParser |
2 (Data Constructor) | Text.KickassTorrentsDumpParser |
Produced by Haddock version 2.12.0
The Best Working Torrent Indexes
Torrent search sites tend to get taken down regularly. Here are some working torrent indexes:
- https://1337x.to (also https://1337x.is/) — another good all-round index
- LimeTorrents — good all-round index
- http://www.yts.am/ — specializes in HD movies that have small file sizes
- https://thepiratebay3.org/ — this classic index is still available
- https://torlock.com — specializes in anime and ebooks
- https://www.torrentdownloads.me — good index
- https://rarbg.to — good index but has captchas — blocked in Bulgaria, Denmark, Portugal, and the UK
Related Posts
Nostr — A New Protocol For Social Media
July 30, 2023 / Peer To Peer, Privacy-Respecting Services
Plex Server: Stream Your Media Collection For Free
November 9, 2022 / Media Managers, Peer To Peer, Privacy-Respecting Services
Saving torrents on a torrent index site
I’m building a torrent site where users can upload torrents. What would be a good way to save the .torrent files? I can think of several options: Saving the torrent file itself in a folder on the server (not the best option since OS’s have limitations saving lots of files in 1 folder) Saving the torrent file itself in different folders per month Saving the contents of the torrent file in the database (any limitations / performance issues / any other caveats?) Any other options?
194k 52 52 gold badges 436 436 silver badges 836 836 bronze badges
asked Jun 19, 2011 at 15:57
71.5k 58 58 gold badges 190 190 silver badges 262 262 bronze badges
6 Answers 6
If you’re concerned about having too much files within a directory, you need to distribute the files across multiple directories. Storing them by month, day or week is one way how to do so. It depends a bit how many files you really have I would say.
You can try to more or less equally distribute the files within subdirectories by hashing their filename and use the whole or part of the hash to generate one or multiple subdirectory names:
$hash = md5($fileName); $srotePath = sprintf('%s/%s', substr($hash,0,2), $fileName);
This would pick the first two character from an md5 hash ( 00 – ff , 256 subdirectories) to generate the subdirectory.
The benefit compared with a date is, that you always can find out in which directory a file is stored when you have it’s name.
That does also mean, that you can not have duplicate files with the same name (which might have worked for the date based subfolder).