So, yeah: Do you save your torrent files or delete them after you’ve added them to your favorite torrent client? Why? Not the underlying data, just the torrent files themselves.

I’m undecided. I figure if I save them and back them up to an offline/offsite device, then I can (mostly/hopefully) recover from hardware failure by simply re-adding all the torrent files to my favorite client. The downside is deciding how to organize them.

I’d love to hear from the community on this.

  • Mordikan@kbin.earth
    link
    fedilink
    arrow-up
    1
    ·
    1 day ago

    You could try something lightweight and easier like sqlite3. You don’t have to have a full blown postgres or mysql server running that way. Just have your .db file and open it with the sqlite3 command. You still would have to learn basic SQL but nothing over the top especially if its only a few columns you’re creating.

    One fun thing you can do technically is store files inside the DB structure as base64 encoded values. So, you might have something like a unique ID, the name of the torrent, then the torrent itself all in one location. If nothing else, something fun to play around with.