tags:

views:

29

answers:

1

I have this problem that I think would require me to do multiple(two) mapreduces to get the expected result. Is this possible in CouchDB? If not, A are there other database engines that might support this?

+1  A: 

No. You could try Couldant hosting, which support map-reduce chaining, but that would lock you into that platform, as far as I can tell.

If a delay is acceptable, you may use an asynchronous process to feed the view data back into CouchDB as input for the second view.

Victor Nicollet
Great! Thanks for answering!
Ztyx