Asynchronous Programming

From Jonathan Gardner's Tech Wiki
Jump to: navigation, search

Async programming is interesting.

poll, select are no good for lots of connections. select runs out of descriptors, and poll scales O(n) due to its structure. Something else is needed for many open files.

I want to do some serious async as part of pyli.