我写了一个 Couchbase 视图,我正在从 Python 中查询这个视图。它不会返回完整的数据集,而是仅返回前 10 个元素。
我不想要分页,而不是分页我想要整个数据集。有没有办法做到这一点?
下面是我的视图代码:
function (doc, meta) {
if (doc.type == "folder" && doc.location) {
emit(doc.location, meta.id);
}
}
这是我为运行查询而编写的 Python 代码:
view_endpoint = "_design/restViews/_view/"+viewName+"?key=%22"+key
response = requests.get(view_url + view_endpoint).json()
return response