Building a simple python epoll server

How can you make your python server fast? One method is through using the Linux system call epoll. Epoll is an I/O event notification system that monitors file descriptors of I/O events.

In your first foray into writing python http servers you will likely encounter or write a simple program as seen below:

Read more...
Previous Page 2 of 2