MCPcopy Create free account
hub / github.com/couchbase/couchbase-python-client / remove

Method remove

couchbase/logic/collection_impl.py:348–352  ·  view source on GitHub ↗
(self,
               req: PycbcCoreKeyValueRequest,
               obs_handler: ObservableRequestHandler)

Source from the content-addressed store, hash-verified

346 return ScanResultIterable(req)
347
348 def remove(self,
349 req: PycbcCoreKeyValueRequest,
350 obs_handler: ObservableRequestHandler) -> MutationResult:
351 ret = self._client_adapter.execute_collection_request(req.opcode, req, obs_handler=obs_handler)
352 return MutationResult(ret, key=req.key)
353
354 def remove_multi(self, req: KeyValueMultiRequest, obs_handler: ObservableRequestHandler) -> MultiMutationResult:
355 ret = self._client_adapter.execute_collection_request(req.opcode, req.request_list, obs_handler=obs_handler)

Callers 6

create_query_objectMethod · 0.45
build_query_requestMethod · 0.45
create_query_objectMethod · 0.45
get_search_query_argsMethod · 0.45

Calls 2

MutationResultClass · 0.90

Tested by

no test coverage detected