Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个这样定义的视图:
function (doc, meta) { emit(meta.id, null); }
我希望此视图返回所有文档的 ID,但它永远不会返回超过 22 个文档。目前,我的数据库中有超过 300,000 个文档。
我知道视图是异步更新的,但我希望它返回超过 22 个结果。我试过让数据库保持运行,但似乎在将 22 个文档添加到视图后视图并没有更新。
您仍在使用dev_视图。为了使用dev_视图检索所有视图,您必须添加&full_set=true到参数列表中。如果您希望使用其中一个 API 检索所有结果,则必须发布该视图并改用该视图的已发布版本。
dev_
&full_set=true