Streams entries out of a remote archive with HTTP Range requests, so a single
asset can be pulled from a large pack without downloading the whole thing.
Servers that ignore Range (answering 200 with the full body) are handled
transparently: the full archive is cached on first read and every subsequent
range is served from memory — i.e. it degrades to a BufferSource.
Streams entries out of a remote archive with HTTP Range requests, so a single asset can be pulled from a large pack without downloading the whole thing.
Servers that ignore
Range(answering200with the full body) are handled transparently: the full archive is cached on first read and every subsequent range is served from memory — i.e. it degrades to a BufferSource.