- From: Adam Rice <notifications@github.com>
- Date: Fri, 21 Apr 2023 02:20:03 -0700
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Friday, 21 April 2023 09:20:09 UTC
I don't think it's the promises that are causing you to run out of memory, but the large number of pending writes holding onto buffers. So awaiting the results of your writes (or waiting `writer.ready`) would be your best option. Synchronous blocking operations are harmful in a browser context, so we would prefer not to add them to the standard. -- Reply to this email directly or view it on GitHub: https://github.com/whatwg/streams/issues/1276#issuecomment-1517535021 You are receiving this because you are subscribed to this thread. Message ID: <whatwg/streams/issues/1276/1517535021@github.com>
Received on Friday, 21 April 2023 09:20:09 UTC