]> granicus.if.org Git - python/commit
Issue #20540: Fix a performance regression (vs. Python 3.2) when layering a multiproc...
authorAntoine Pitrou <solipsis@pitrou.net>
Sat, 8 Feb 2014 22:03:56 +0000 (23:03 +0100)
committerAntoine Pitrou <solipsis@pitrou.net>
Sat, 8 Feb 2014 22:03:56 +0000 (23:03 +0100)
commitb7d6d2ac6ea4361fd72314d466029bd119ad3fea
tree0fa0f18ecf0aa178d7db80a63e0ec62c17b5bacf
parentb4062e8f8a4515aa14550b1cd79fb4feaed95b5c
Issue #20540: Fix a performance regression (vs. Python 3.2) when layering a multiprocessing Connection over a TCP socket.
For small payloads, Nagle's algorithm would introduce idle delays before the entire transmission of a message.
Lib/multiprocessing/connection.py
Misc/NEWS