The long-polling tag has no wiki summary.
5
votes
2answers
490 views
How to handle 20k concurrent persistent connections
I'm trying to design an architecture to handle massive TCP socket connections and I'm in doubt on the limits of this architecture.
I'll have to handle ~20k concurrent TCP connections and these are ...
2
votes
0answers
378 views
Long Polling Options: Nginx, PHP, Node.js
Also posted here: http://stackoverflow.com/questions/8839295/long-polling-options-nginx-php-node-js
I'm designing a long-polling app to broadcast small changes very rapidly to, possibly, a large ...
0
votes
1answer
423 views
Nginx & long poll: Best practices to reduce memory and bandwidth footprint
I use nginx in this mode for BOSH and chat clients along with gzip.
location ~* /http-bind/ {
proxy_buffering off;
keepalive_timeout 55;
access_log off;
tcp_nodelay on;
...