From c82e6b8b5992dd74d4cbea0cead46966a9a4d3b4 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Wed, 18 Sep 2019 12:23:41 +0200 Subject: [PATCH] [HttpClient] Add the buffer option to 4.3 too --- reference/configuration/framework.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/reference/configuration/framework.rst b/reference/configuration/framework.rst index 69962b39488..ad6b36dc3c7 100644 --- a/reference/configuration/framework.rst +++ b/reference/configuration/framework.rst @@ -93,6 +93,7 @@ Configuration * :ref:`default_options ` * `bindto`_ + * `buffer`_ * `cafile`_ * `capath`_ * `ciphers`_ @@ -118,6 +119,7 @@ Configuration * `auth_bearer`_ * `base_uri`_ * `bindto`_ + * `buffer`_ * `cafile`_ * `capath`_ * `ciphers`_ @@ -781,6 +783,15 @@ bindto A network interface name, IP address, a host name or a UNIX socket to use as the outgoing network interface. +buffer +...... + +**type**: ``bool`` **default**: ``false`` + +Buffering the response means that you can access its content multiple times +without performing the request again. Pass ``true`` as the value of this option +to enable buffering. + cafile ......