vote up 1 vote down star
1

is http streaming possible without using any streaming servers?

flag

2 Answers

vote up 1 vote down

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

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.