Skip to content
Snippets Groups Projects
Commit b92e82d8 authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

doc: fix default for net.tcp_pipeline

parent f5badc61
No related branches found
No related tags found
1 merge request!356doc: fix default for net.tcp_pipeline
Pipeline #
......@@ -595,13 +595,14 @@ For when listening on ``localhost`` just doesn't cut it.
.. function:: net.tcp_pipeline([len])
Get/set per-client TCP pipeline limit (number of outstanding queries that a single client connection can make in parallel). Default is 50.
Get/set per-client TCP pipeline limit, i.e. the number of outstanding queries that a single client connection can make in parallel. Default is 100.
.. code-block:: lua
> net.tcp_pipeline()
100
> net.tcp_pipeline(50)
50
> net.tcp_pipeline(100)
.. function:: net.tls([cert_path], [key_path])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment