Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Classe « MongoClient »

Méthode pymongo.MongoClient.unlock

Signature de la méthode unlock

def unlock(self, session=None) 

Description

unlock.__doc__

**DEPRECATED**: Unlock a previously locked server.

        :Parameters:
          - `session` (optional): a
            :class:`~pymongo.client_session.ClientSession`.

        Deprecated. Users of MongoDB version 3.2 or newer can run the
        `fsyncUnlock command`_ directly with
        :meth:`~pymongo.database.Database.command`::

             client.admin.command('fsyncUnlock')

        Users of MongoDB version 2.6 and 3.0 can query the "unlock" virtual
        collection::

            client.admin["$cmd.sys.unlock"].find_one()

        .. versionchanged:: 3.11
           Deprecated.

        .. versionchanged:: 3.6
           Added ``session`` parameter.

        .. _fsyncUnlock command: https://docs.mongodb.com/manual/reference/command/fsyncUnlock/