couchdb复杂映射减少多个文档返回单个json对象
如何在 couchdb 中创建复杂的映射归约函数以跨越具有相同属性名称的多个文档的视图以返回单个 json 对象?
管理这个问题最有效的方法是什么?
嵌套集/源算法是否适合 couchdb(更改非常需要写入)?
How to create a complex map reduce function in couchdb to span a view over multiple documents with same attribute names to give back a single json object?
What is the most efficient way to manage this?
Is a nested set/source algorithm suitable for couchdb (changes are very write intensive)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你想要整个文档,你不应该使用reduce。只需为您之前讨论的“type”属性执行适当的映射函数,并使用 include_docs=true 查询视图即可。
If you want the whole documents you shouldn't use reduce. Just do a proper map function for the "type" attribute you talked about earlier and query the view with include_docs=true.