Skip to content

Commit 66abdcb

Browse files
Release 0.6.0
1 parent 96dc09b commit 66abdcb

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

docs/index.rst

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,9 @@ Gevent
159159

160160
`Gevent <http://gevent.org>`_ is another asynchronous framework based on
161161
coroutines, very similar to eventlet. An Engine.IO server deployed with
162-
gevent has access to the long-polling transport. If project gevent-websocket
163-
is also installed, the WebSocket transport is also available.
162+
gevent has access to the long-polling transport. If project
163+
`gevent-websocket <https://bitbucket.org/Jeffrey/gevent-websocket/>`_ is
164+
installed, the WebSocket transport is also available.
164165

165166
Instances of class ``engineio.Server`` will automatically use gevent for
166167
asynchronous operations if the library is installed and eventlet is not
@@ -197,7 +198,7 @@ Or to include WebSocket::
197198

198199
Same as with eventlet, due to limitations in its load balancing algorithm,
199200
gunicorn can only be used with one worker process, so the ``-w 1`` option is
200-
required. Note that a single eventlet worker can handle a large number of
201+
required. Note that a single gevent worker can handle a large number of
201202
concurrent clients.
202203

203204
Note: Gevent provides a ``monkey_patch()`` function that replaces all the
@@ -240,6 +241,9 @@ can handle multiple concurrent requests using threads, since a client can have
240241
up to two outstanding requests at any given time. The Werkzeug server is
241242
single-threaded by default, so the ``threaded=True`` option is required.
242243

244+
Note that servers that use worker processes instead of threads, such as
245+
gunicorn, do not support an Engine.IO server configured in threading mode.
246+
243247
Multi-process deployments
244248
~~~~~~~~~~~~~~~~~~~~~~~~~
245249

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name='python-engineio',
15-
version='0.5.1',
15+
version='0.6.0',
1616
url='http://github.com/miguelgrinberg/python-engineio/',
1717
license='MIT',
1818
author='Miguel Grinberg',

0 commit comments

Comments
 (0)