diff options
author | Kristján Valur Jónsson <kristjan@ccpgames.com> | 2009-06-24 09:17:04 (GMT) |
---|---|---|
committer | Kristján Valur Jónsson <kristjan@ccpgames.com> | 2009-06-24 09:17:04 (GMT) |
commit | f1d11efb72a9f0612a39712658aecff7c2a5abcf (patch) | |
tree | 3394ad33b70e88a2de4d03aa659e944c5bff8d42 /Doc/library | |
parent | 5a85d5c4f2eb09e5ab5d4c84090aee38340eb284 (diff) | |
download | cpython-f1d11efb72a9f0612a39712658aecff7c2a5abcf.zip cpython-f1d11efb72a9f0612a39712658aecff7c2a5abcf.tar.gz cpython-f1d11efb72a9f0612a39712658aecff7c2a5abcf.tar.bz2 |
http://bugs.python.org/issue6192
Move the newly introduced disable_nagle_algorithm flag into the StreamRequestHandler, where it is more appropriate.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/socketserver.rst | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Doc/library/socketserver.rst b/Doc/library/socketserver.rst index bf93cce..d2bbba4 100644 --- a/Doc/library/socketserver.rst +++ b/Doc/library/socketserver.rst @@ -223,16 +223,6 @@ The server classes support the following class variables: desired. If :meth:`handle_request` receives no incoming requests within the timeout period, the :meth:`handle_timeout` method is called. -.. attribute:: TCPServer.disable_nagle_algorithm - - If set to True, it will set the TCP_NODELAY attribute of new requests - connections. This can help alleviate problems with latency in - request-response type applications. To avoid sending many small packets, - this option should be used only when bufferning output, such as when - setting :attr:`StreamRequestHandler.wbufsize` attribute to -1. - - .. versionadded:: 2.7 - There are various server methods that can be overridden by subclasses of base server classes like :class:`TCPServer`; these methods aren't useful to external users of the server object. |