@@ -12,21 +12,23 @@ IMAP or SSH protocols, instant messaging and `much more <http://twistedmatrix.co
12
12
PyZMQ
13
13
-----
14
14
15
- `PyZMQ <http://zeromq.github.com/pyzmq/ >`_ is the Python binding for `ZeroMQ <http://www.zeromq.org/ >`_,
16
- which is a high-performance asynchronous messaging library. One great advantage is that ZeroMQ
17
- can be used for message queuing without a message broker. The basic patterns for this are:
18
-
19
- - request-reply: connects a set of clients to a set of services. This is a remote procedure call
20
- and task distribution pattern.
21
- - publish-subscribe: connects a set of publishers to a set of subscribers. This is a data
22
- distribution pattern.
23
- - push-pull (or pipeline): connects nodes in a fan-out / fan-in pattern that can have multiple
24
- steps, and loops. This is a parallel task distribution and collection pattern.
15
+ `PyZMQ <http://zeromq.github.com/pyzmq/ >`_ is the Python binding for
16
+ `ZeroMQ <http://www.zeromq.org/ >`_, which is a high-performance asynchronous
17
+ messaging library. One great advantage of ZeroMQ is that it can be used for
18
+ message queuing without a message broker. The basic patterns for this are:
19
+
20
+ - request-reply: connects a set of clients to a set of services. This is a
21
+ remote procedure call and task distribution pattern.
22
+ - publish-subscribe: connects a set of publishers to a set of subscribers.
23
+ This is a data distribution pattern.
24
+ - push-pull (or pipeline): connects nodes in a fan-out / fan-in pattern that
25
+ can have multiple steps, and loops. This is a parallel task distribution
26
+ and collection pattern.
25
27
26
28
For a quick start, read the `ZeroMQ guide <http://zguide.zeromq.org/page:all >`_.
27
29
28
30
gevent
29
31
------
30
- `gevent <http://www.gevent.org/ >`_ is a coroutine-based Python networking library
31
- that uses greenlets and libevent event loop.
32
32
33
+ `gevent <http://www.gevent.org/ >`_ is a coroutine-based Python networking library
34
+ that uses greenlets and libevent event loops.
0 commit comments