From a7db21a0b412fe23abde2d057a76b328a09cd7f0 Mon Sep 17 00:00:00 2001 From: "A. Jesse Jiryu Davis" Date: Thu, 23 Oct 2014 20:54:00 -0400 Subject: [PATCH] PYTHON-706 Mention that backports.pbkdf2 provides the best performance. --- doc/examples/authentication.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/examples/authentication.rst b/doc/examples/authentication.rst index f061cbc9e..24b012e25 100644 --- a/doc/examples/authentication.rst +++ b/doc/examples/authentication.rst @@ -22,6 +22,11 @@ passed to the :meth:`~pymongo.database.Database.authenticate` method:: >>> uri = "mongodb://user:password@example.com/the_database?authMechanism=SCRAM-SHA-1" >>> client = MongoClient(uri) +For best performance install `backports.pbkdf2`_, especially on Python older +than 2.7.8, or on Python 3 before Python 3.4. + +.. _backports.pbkdf2: https://pypi.python.org/pypi/backports.pbkdf2/ + MONGODB-CR ----------