-
Notifications
You must be signed in to change notification settings - Fork 254
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chunking of subrequests #49
Comments
In nginx, "flushing" has nothing to do with "chunking". So I'm confused here. Also, you seem to be confused chunked response bodies with chunked request bodies. Anyway, I don't quite follow you. |
You are right, sorry this was a bit disambigous (and I had a little confusion). |
@DuckDagobert If there is no pending subrequests to complete before the current subrequest, then my hunch is that |
After some testing and some more research, I decided to do it all with lua nginx module (as I have more control, need fewer subrequests, can have non blocking subrequests and can echo all subrequests separately, optimised code,... using a couple openresty module; basically emulating facebook's bigpipe/how I think taobao does their pagelets) You really are a genius! openresty is amazing :-) |
Hey
For echo_flush it states:
Does chunking subrequests work however with this module (on nginx 1.5+; chunking is part of nginx core since 1.3.9)? (no need for echo_flush then)
The text was updated successfully, but these errors were encountered: