summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRichard Oudkerk <shibturn@gmail.com>2013-06-24 13:45:24 (GMT)
committerRichard Oudkerk <shibturn@gmail.com>2013-06-24 13:45:24 (GMT)
commit56e968c50a8f594f5b226359f8eedcc873826d1b (patch)
tree403e2edd2c320fd9bd7f47edd064f952615fb4a1 /Doc
parent65e27fccdc8b0dadd064a7977f0249e07408d656 (diff)
downloadcpython-56e968c50a8f594f5b226359f8eedcc873826d1b.zip
cpython-56e968c50a8f594f5b226359f8eedcc873826d1b.tar.gz
cpython-56e968c50a8f594f5b226359f8eedcc873826d1b.tar.bz2
Issue #18277: Document quirks of multiprocessing queue.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/multiprocessing.rst17
1 files changed, 17 insertions, 0 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index 6f9298a..8904cc3 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -486,6 +486,23 @@ Note that one can also create a shared queue by using a manager object -- see
the :mod:`multiprocessing` namespace so you need to import them from
:mod:`Queue`.
+.. note::
+
+ When an object is put on a queue, the object is pickled and a
+ background thread later flushes the pickled data to an underlying
+ pipe. This has some consequences which are a little surprising,
+ but should not cause any pratical difficulties -- you can always
+ use a managed queue if they really bother you.
+
+ (1) After putting an object on an empty queue there may be an
+ infinitessimal delay before the queue's :meth:`~Queue.empty`
+ method returns :const:`False` and :meth:`~Queue.get_nowait` can
+ return without raising :exc:`Queue.Empty`.
+
+ (2) If multiple processes are enqueuing objects, it is possible for
+ the objects to be received at the other end out-of-order.
+ However, objects enqueued by the same process will always be in
+ the expected order with respect to each other.
.. warning::