MCPcopy Index your code
hub / github.com/couchbase/couchbase-python-client / _get

Method _get

acouchbase/datastructures.py:698–712  ·  view source on GitHub ↗

Get the entire set.

(self, parent_span: Optional[WrappedSpan] = None)

Source from the content-addressed store, hash-verified

696 raise
697
698 async def _get(self, parent_span: Optional[WrappedSpan] = None) -> List:
699 """
700 Get the entire set.
701 """
702 op_type = KeyValueOperationType.Get
703 async with ObservableRequestHandler(op_type, self._impl.observability_instruments) as obs_handler:
704 req, transcoder = self._impl.request_builder.build_get_request(self._key,
705 obs_handler,
706 parent_span=parent_span)
707 return await self._execute_op(self._impl.get,
708 req,
709 obs_handler,
710 parent_span,
711 create_type=True,
712 transcoder=transcoder)
713
714 async def add(self, value: Any) -> bool:
715 """

Callers 3

removeMethod · 0.95
containsMethod · 0.95
valuesMethod · 0.95

Calls 3

_execute_opMethod · 0.95
build_get_requestMethod · 0.80

Tested by

no test coverage detected