Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upPrevent downloading to disk #1562
Closed
Comments
This comment has been minimized.
This comment has been minimized.
client.add(torrentId, { store: require('memory-chunk-store') }, (torrent) => {
torrent.files[0].createReadStream({start, end})
}) |
This comment has been minimized.
This comment has been minimized.
|
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Is there any possibility to retrieve torrent data strictly through
.createReadStream({ start, end });? This way it is high bandwidth and low disk usage? I cannot find functionality to suppress the library from writing to /tmp (or any other path I specify). I was thinking of mounting a path to memory (linux only) but that would be far fetched.Any ideas?