Tagged Questions

8
votes
6answers
3k views

Writing a socket-based server in Python, recommended strategies?

I was recently reading this document which lists a number of strategies that could be employed to implement a socket server. Namely, they are: Serve many clients with each thread, and use ...
3
votes
1answer
183 views

How to notify client's browser about some event on server?

I'm using python (Tornado) on server side and some javascript on a client side. I have the common situation - one user send a message to another. And I want server to notify client's browser (reciever ...
2
votes
2answers
411 views

Python web server options with nonblocking architecture

I am looking for a Python based nonblocking web server environment that is designed to handle large number of simultaneous connections and be responsive under heavy load (C10K). I need it as a backend ...