Missing Do method on when performing the bucket.Do() for bulk ops bucket.Do(ops) Is the Do() is deprecated, if yes, how to execute the bulk operations? Are there any other methods. Could share the reference documentation for the latest Go SDK
Regards,
Ramesh
Hi @rkunhi I think that you want to use the bulk API with gocb v2? The Do function has moved to the Collection level, see Async and Batching APIs | Couchbase Docs for more information. The full example from that doc is at sdk-examples/go/concurrent-batch.go at master · couchbaselabs/sdk-examples · GitHub
Do
Collection
Thank you so much for quick response.