[PYCBC-63] include docs over binary protocol Created: 30/Aug/12 Updated: 07/May/13 Resolved: 07/May/13 |
|
| Status: | Closed |
| Project: | Couchbase Python Client Library |
| Component/s: | None |
| Affects Version/s: | 0.8.0 |
| Fix Version/s: | 0.10.0 |
| Security Level: | Public |
| Type: | Improvement | Priority: | Major |
| Reporter: | Benjamin Young | Assignee: | Mark Nunberg |
| Resolution: | Won't Fix | Votes: | 0 |
| Labels: | None | ||
| Remaining Estimate: | Not Specified | ||
| Time Spent: | Not Specified | ||
| Original Estimate: | Not Specified | ||
| Description |
|
Currently, the include_docs=true parameter pulls in content over HTTP. It's less optimized and less performant than pulling the same content via a get_multi() request.
However, get_multi() is currently broken over the binary protocol. This commit shows some progress on the API design: http://review.couchbase.org/#/c/20349/ That would allow the developer to make a request like: users = cb['default']['_design/game']['users_by_points'].results().docs() and get back the content of each user's document, regardless of it being a JSON doc or not. Currently, that code is broken and the implementation is knowingly bad due to having to work around the current lack of .get_multi() on CouchbaseClient and the brokenness of .get_multi() on the MemcachedClient. The current code in that commit returns only the last document requested in the list of results. |