How many of you will find out the answer from couchdb view as follows
{"rows":[ {"key":"1","value":{"Col1":"Some Value"}}, {"key":"2","value":{"Col1":"Another Value"}}, ]}
Well, I would like to contrast this with
[{"key":"1","value":{"Col1":"Some Value"}}, {"key":"2","value":{"Col1":"Another Value"}}]
I am considering using a “list function” to match an answer, but I wanted to know the potential overhead performance to do something like this? Is it worth it ... or should I consider changing my entire code to handle a different answer?
Thanks Damo
source share