Open benjamin-bader opened 7 years ago
Proxied responses for e.g. video will chew up heap usage, and browsers will be unhappy.
We should sniff Content-Type and, if it's audio/ or video/, stop accumulating the body in memory and just ship it to the client.
Content-Type
audio/
video/
This requires augmenting HttpMessageParser such that it can:
I'm not sure what I was thinking re: product features around streaming media. Current thoughts:
...we should test this with DRM'd streams like Netflix.
Proxied responses for e.g. video will chew up heap usage, and browsers will be unhappy.
We should sniff
Content-Type
and, if it'saudio/
orvideo/
, stop accumulating the body in memory and just ship it to the client.This requires augmenting HttpMessageParser such that it can: