PYTHON-706 Mention that backports.pbkdf2 provides the best performance.

This commit is contained in:
A. Jesse Jiryu Davis 2014-10-23 20:54:00 -04:00
parent d15a7ffbb5
commit a7db21a0b4

View File

@ -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
----------