You can use streams to process the request without having the whole file in memory. However, doing h

You can use streams to process the request without having the whole file in memory. However, doing hundreds of MBs or GBs will probably need you to split it in smaller chunks otherwise you will hit cpu/time limits.
Example of streaming a file in DO: https://github.com/lambrospetrou/tiddlyflare/blob/main/src/durable-objects.ts#L281
Was this page helpful?