We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40db4b6 commit b7cba71Copy full SHA for b7cba71
docs/transports.rst
@@ -14,6 +14,11 @@ For example to use the ``requests``-based connection just import it and use it::
14
from elasticsearch import Elasticsearch, RequestsHttpConnection
15
es = Elasticsearch(connection_class=RequestsHttpConnection)
16
17
+The default connection class is based on ``urllib3`` which is more performant
18
+and lightweight than the optional ``requests``-based class. Only use
19
+``RequestsHttpConnection`` if you have need of any of ``requests`` advanced
20
+features like custom auth plugins etc.
21
+
22
23
.. py:module:: elasticsearch.connection
24
0 commit comments