views:

79

answers:

2
+1  Q: 

http streaming

is http streaming possible without using any streaming servers?

+1  A: 

Of course. You can output and flush, it gets to client before you end the script, thus it's streaming.

vartec
A: 

Yes, although libraries have varying level of support. What needs to be used is "http chunking", such that lib does not try to buffer the whole request/response in memory (to computed the content length header) and instead indicate content comes in chunks.

StaxMan