Track tasks and feature requests
Join 40 million developers who use GitHub issues to help identify, assign, and keep track of the features and bug fixes your projects need.
Sign up for free See pricing for teams and enterprisesPrevent 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?