I was reading this article: http://blog.pusher.com/what-came-before-websockets/, and the following text gets my attention:
XHR Streaming worked in all browsers the responseText of the XMLHttpRequest object would continue to grow until the connection was closed meaning a reconnection had to eventually be forced to clear this buffer.
If I understand this correctly, does this mean that whenever the buffer reaches certain size (what is the actual size here, by the way?), the connection will reset itself to clear up this buffer? In other words, XHR streaming is as long living as the size of this buffer?
Can someone please confirm this.
Connection: close
– Stinkweed