Specifying Range For HttpRangeReader / Writer? #536
-
Library is exactly what I'm looking for and have a PoC going which downloads multiple files with When I look at the network traffic for this I can see many sequential fetch requests for I'm assuming zip writer will be able to yield better with smaller requests than one fetch response for 2+ GB but I would like to strike a balance of maybe 2-10MB per request to keep things moving quickly. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can call |
Beta Was this translation helpful? Give feedback.
You can call
zip.configure({ chunkSize: <desired size in bytes> })
to set the chunk size.