How can I insert data without getting the response?

I am using the new python SDK and I wanted to find a way to insert data without receiving the result. Similar to Write Concern in mongo. Is there a way to do that?

Hello @john3 in Couchbase you will always get an acknowledgment back and you will have to ignore it on the app side.
@jcasey would there be anything else that I am missing ?

@AV25242 is correct. Just ignore the response if you want. Also, if using a query, we do have a way to execute a query in more of a pass/fail manner (still a type of response). See the forum post here for some sample code.

Hope this helps.