当前位置: 首页>>代码示例>>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;未经允许,请勿转载。