Cory
Cory

Reputation: 15615

How to retrive multiple documents in Couchbase with python client

Currently, the Couchbase Python client doesn't implement getMulti() method yet. How can I retrive multiple document in bulk by providing multiple keys?

I am asking question about couchbase not memcached client

Upvotes: 1

Views: 619

Answers (1)

Tug Grall
Tug Grall

Reputation: 3520

As you notice today it is not supported by the Couchbase client. So you have to put this in a loop and do individual gets.

An issue has been logged on the subject: http://www.couchbase.com/issues/browse/PYCBC-49

Upvotes: 1

Related Questions