當前位置: 首頁>>代碼示例>>Python>>正文


Python helpers._check_gle_response方法代碼示例

本文整理匯總了Python中pymongo.helpers._check_gle_response方法的典型用法代碼示例。如果您正苦於以下問題:Python helpers._check_gle_response方法的具體用法?Python helpers._check_gle_response怎麽用?Python helpers._check_gle_response使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在pymongo.helpers的用法示例。


在下文中一共展示了helpers._check_gle_response方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: legacy_write

# 需要導入模塊: from pymongo import helpers [as 別名]
# 或者: from pymongo.helpers import _check_gle_response [as 別名]
def legacy_write(self, request_id, msg, max_doc_size, with_last_error):
        """Send OP_INSERT, etc., optionally returning response as a dict.

        Can raise ConnectionFailure or OperationFailure.

        :Parameters:
          - `request_id`: an int.
          - `msg`: bytes, an OP_INSERT, OP_UPDATE, or OP_DELETE message,
            perhaps with a getlasterror command appended.
          - `max_doc_size`: size in bytes of the largest document in `msg`.
          - `with_last_error`: True if a getlasterror command is appended.
        """
        if not with_last_error and not self.is_writable:
            # Write won't succeed, bail as if we'd done a getlasterror.
            raise NotMasterError("not master")

        self.send_message(msg, max_doc_size)
        if with_last_error:
            response = self.receive_message(1, request_id)
            return helpers._check_gle_response(response) 
開發者ID:jruaux,項目名稱:mongodb-monitoring,代碼行數:22,代碼來源:pool.py


注:本文中的pymongo.helpers._check_gle_response方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。