2qAfhfiMloOWSi7r3xXR02 changeset

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