As many of you will know the response from a couchdb view is as follows
{"rows":[
{"key":"1","value":{"Col1":"Some Value"}},
{"key":"2","value":{"Col1":"Another Value"}},
]}
Well I would like to collate that to
[{"key":"1","value":{"Col1":"Some Value"}},
{"key":"2","value":{"Col1":"Another Value"}}]
I am considering using a "List Function" to collate the response but I wanted to know the potential performance overhead of doing something like this?? Is it worth it... or should I consider changing all my code to handle the different response??
Thanks Damo