MCPcopy Index your code
hub / github.com/mongodb/mongo-python-driver / _get_more_compressed

Function _get_more_compressed

pymongo/message.py:531–538  ·  view source on GitHub ↗

Internal compressed getMore message helper.

(
    collection_name: str,
    num_to_return: int,
    cursor_id: int,
    ctx: Union[SnappyContext, ZlibContext, ZstdContext],
)

Source from the content-addressed store, hash-verified

529
530
531def _get_more_compressed(
532 collection_name: str,
533 num_to_return: int,
534 cursor_id: int,
535 ctx: Union[SnappyContext, ZlibContext, ZstdContext],
536) -> tuple[int, bytes]:
537 """Internal compressed getMore message helper."""
538 return _compress(2005, _get_more_impl(collection_name, num_to_return, cursor_id), ctx)
539
540
541def _get_more_uncompressed(

Callers 1

_get_moreFunction · 0.85

Calls 2

_compressFunction · 0.85
_get_more_implFunction · 0.85

Tested by

no test coverage detected