]> granicus.if.org Git - python/commitdiff
Reword IPC section
authorAntoine Pitrou <solipsis@pitrou.net>
Mon, 5 Dec 2011 00:43:32 +0000 (01:43 +0100)
committerAntoine Pitrou <solipsis@pitrou.net>
Mon, 5 Dec 2011 00:43:32 +0000 (01:43 +0100)
Doc/howto/sockets.rst

index 603df5913e401e80b238bbfd30d11ac5064e49b3..f2da3978f782f30362dd326a5d2d6ed830f644a7 100644 (file)
@@ -123,12 +123,13 @@ IPC
 ---
 
 If you need fast IPC between two processes on one machine, you should look into
-whatever form of shared memory the platform offers. A simple protocol based
-around shared memory and locks or semaphores is by far the fastest technique.
+pipes or shared memory.  If you do decide to use AF_INET sockets, bind the
+"server" socket to ``'localhost'``. On most platforms, this will take a
+shortcut around a couple of layers of network code and be quite a bit faster.
 
-If you do decide to use sockets, bind the "server" socket to ``'localhost'``. On
-most platforms, this will take a shortcut around a couple of layers of network
-code and be quite a bit faster.
+.. seealso::
+   The :mod:`multiprocessing` integrates cross-platform IPC into a higher-level
+   API.
 
 
 Using a Socket