Wrapping, newlines, and minor wording changes to scenarios/network.

This commit is contained in:
george
2014-06-17 13:49:05 -06:00
parent 44b164c314
commit 44890a8972
+13 -11
View File
@@ -12,21 +12,23 @@ IMAP or SSH protocols, instant messaging and `much more <http://twistedmatrix.co
PyZMQ
-----
`PyZMQ <http://zeromq.github.com/pyzmq/>`_ is the Python binding for `ZeroMQ <http://www.zeromq.org/>`_,
which is a high-performance asynchronous messaging library. One great advantage is that ZeroMQ
can be used for message queuing without a message broker. The basic patterns for this are:
`PyZMQ <http://zeromq.github.com/pyzmq/>`_ is the Python binding for
`ZeroMQ <http://www.zeromq.org/>`_, which is a high-performance asynchronous
messaging library. One great advantage of ZeroMQ is that it can be used for
message queuing without a message broker. The basic patterns for this are:
- request-reply: connects a set of clients to a set of services. This is a remote procedure call
and task distribution pattern.
- publish-subscribe: connects a set of publishers to a set of subscribers. This is a data
distribution pattern.
- push-pull (or pipeline): connects nodes in a fan-out / fan-in pattern that can have multiple
steps, and loops. This is a parallel task distribution and collection pattern.
- request-reply: connects a set of clients to a set of services. This is a
remote procedure call and task distribution pattern.
- publish-subscribe: connects a set of publishers to a set of subscribers.
This is a data distribution pattern.
- push-pull (or pipeline): connects nodes in a fan-out / fan-in pattern that
can have multiple steps, and loops. This is a parallel task distribution
and collection pattern.
For a quick start, read the `ZeroMQ guide <http://zguide.zeromq.org/page:all>`_.
gevent
------
`gevent <http://www.gevent.org/>`_ is a coroutine-based Python networking library
that uses greenlets and libevent event loop.
`gevent <http://www.gevent.org/>`_ is a coroutine-based Python networking library
that uses greenlets and libevent event loops.