2qAfhfiMloOWSi7r3xXR02 changeset

Changeset366165323662 (b)
ParentNone (a)
ab
0+Developping concurrent applications in Python
0+
0+Since 2 years or so, I work on [Gunicorn](http://gunicorn.org). This
0+talk will present how I and the other core developers (we are now 3)
0+with the help of the community  have from a simple wsgi server with one
0+command built a powerful WSGI abble to run a wide range of Python web
0+applications.
0+
0+This talk will cover the different paths choosen in gunicorn to handle
0+synchronous and asynchronous applications, how we handle different web
0+frameworks, how we have made gunicorn fully extendable using the Python
0+packaging system what we learn from the community in application serving
0+and how you can solve some some problems. It will also present how the
0+gunicorn core has been used to build frameworks that can help your
0+application application to be more scalable:
0+[pistil](https://github.com/benoitc/pistil) a simple multiprocessing
0+toolkit, [flower](https://github.com/benoitc/flower) a collection of
0+modules to build distributed and reliable concurrent systems in
0+Python, ...
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- Revision None
+++ Revision 366165323662
@@ -0,0 +1,19 @@
+Developping concurrent applications in Python
+
+Since 2 years or so, I work on [Gunicorn](http://gunicorn.org). This
+talk will present how I and the other core developers (we are now 3)
+with the help of the community have from a simple wsgi server with one
+command built a powerful WSGI abble to run a wide range of Python web
+applications.
+
+This talk will cover the different paths choosen in gunicorn to handle
+synchronous and asynchronous applications, how we handle different web
+frameworks, how we have made gunicorn fully extendable using the Python
+packaging system what we learn from the community in application serving
+and how you can solve some some problems. It will also present how the
+gunicorn core has been used to build frameworks that can help your
+application application to be more scalable:
+[pistil](https://github.com/benoitc/pistil) a simple multiprocessing
+toolkit, [flower](https://github.com/benoitc/flower) a collection of
+modules to build distributed and reliable concurrent systems in
+Python, ...