I want to understand basics of Event Driven web server, I know one of them is Tornado, but any other information is much appreciated.
Thanks
|
I want to understand basics of Event Driven web server, I know one of them is Tornado, but any other information is much appreciated. Thanks |
|||
|
|
A web server needs to handle concurrent connections. There are many ways to do this, some of them are:
At the end, the distinction ends up being in how you store each connection state (explicitly in a context structure, implicitly in the stack, implicitly in a continuation, ...) and how you schedule between connections (let the OS scheduler do it, let the OS polling primitives do it, ...). |
|||
|
|
|
There's a nice analogy of this described here: http://daverecycles.com/post/3104767110/explain-event-driven-web-servers-to-your-grandma |
|||