diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/manual/cowboy_http.asciidoc | 7 | ||||
-rw-r--r-- | doc/src/manual/cowboy_http2.asciidoc | 7 |
2 files changed, 12 insertions, 2 deletions
diff --git a/doc/src/manual/cowboy_http.asciidoc b/doc/src/manual/cowboy_http.asciidoc index ccddc55..0640aa9 100644 --- a/doc/src/manual/cowboy_http.asciidoc +++ b/doc/src/manual/cowboy_http.asciidoc @@ -21,6 +21,7 @@ opts() :: #{ chunked => boolean(), connection_type => worker | supervisor, dynamic_buffer => false | {pos_integer(), pos_integer()}, + hibernate => boolean(), http10_keepalive => boolean(), idle_timeout => timeout(), inactivity_timeout => timeout(), @@ -87,6 +88,10 @@ The dynamic buffer size functionality can be disabled by setting this option to `false`. Cowboy will also disable it by default when the `buffer` transport option is configured. +hibernate (false):: + +Whether the connection process will hibernate automatically. + http10_keepalive (true):: Whether keep-alive is enabled for HTTP/1.0 connections. @@ -179,7 +184,7 @@ Ordered list of stream handlers that will handle all stream events. == Changelog * *2.13*: The `active_n` default value was changed to `1`. -* *2.13*: The `dynamic_buffer` option was added. +* *2.13*: The `dynamic_buffer` and `hibernate` options were added. * *2.11*: The `reset_idle_timeout_on_send` option was added. * *2.8*: The `active_n` option was added. * *2.7*: The `initial_stream_flow_size` and `logger` options were added. diff --git a/doc/src/manual/cowboy_http2.asciidoc b/doc/src/manual/cowboy_http2.asciidoc index be48502..0dcfe2c 100644 --- a/doc/src/manual/cowboy_http2.asciidoc +++ b/doc/src/manual/cowboy_http2.asciidoc @@ -25,6 +25,7 @@ opts() :: #{ enable_connect_protocol => boolean(), goaway_initial_timeout => timeout(), goaway_complete_timeout => timeout(), + hibernate => boolean(), idle_timeout => timeout(), inactivity_timeout => timeout(), initial_connection_window_size => 65535..16#7fffffff, @@ -122,6 +123,10 @@ goaway_complete_timeout (3000):: Time in ms to wait for ongoing streams to complete before closing the connection during a graceful shutdown. +hibernate (false):: + +Whether the connection process will hibernate automatically. + idle_timeout (60000):: Time in ms with no data received before Cowboy closes the connection. @@ -302,7 +307,7 @@ too many `WINDOW_UPDATE` frames. == Changelog * *2.13*: The `active_n` default value was changed to `1`. -* *2.13*: The `dynamic_buffer` option was added. +* *2.13*: The `dynamic_buffer` and `hibernate` options were added. * *2.11*: Websocket over HTTP/2 is now considered stable. * *2.11*: The `reset_idle_timeout_on_send` option was added. * *2.11*: Add the option `max_cancel_stream_rate` to protect |