github.com/anacrolix/torrent@v1.61.0/TODO (about) 1 * Make use of sparse file regions in download data for faster hashing. This is available as whence 3 and 4 on some OSs? 2 * When we're choked and interested, are we not interested if there's no longer anything that we want? 3 * dht: Randomize triedAddrs bloom filter to allow different Addr sets on each Announce. 4 * data/blob: Deleting incomplete data triggers io.ErrUnexpectedEOF that isn't recovered from. 5 * Handle wanted pieces more efficiently, it's slow in in fillRequests, since the prioritization system was changed. 6 * fix the lib dir for possum storage tests. it uses a package i made up called testlink to guess at the right directory. but that doesn't work if GOWORK=off. 7 8 webseeds: 9 * Favor giving requests to larger torrents. It appears R2 for example limits speed per object, so large ones will take longer. 10 * Force webseed requests to be applied synchronously to an available object reader and contiguous. 11 * Always make open-ended webseed requests so that more requests can be applied. 12 * Can possibly use expanding requests windows with webseeds with the above changes. 13 * After synchronously searching for more requests for an open object, close it if none are forthcoming which opens up another slot. 14 15 cross-torrent request priority: 16 * Could use the unverified bytes window to do per-connection requesting as needed? Might require abandoning a fix piece order per storage/torrent. Could make webseeding cooperate much more effectively with regular peers.