You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 9, 2023. It is now read-only.
Hi, I'm trying to read a long chunked response which never ends. So it's got blocked forever, with the proxy waiting for all chunks to assembly in one response body.
There is a way to inspect the chunked parts while delivering the responses in parallel?
If not, I suggest implementing a "Stream" flag or a "StreamSize" int, somewhere in SessionEventArgs, to make it possible to disable this caching mechanism, so that partial responses got delivered instantly.
A never ending response also calls for a "NoCache" flag, too, to avoid a OutOfMemoryException in long running connections.