As you know, the reduce function in CouchDB views looks like this:
function (key, values, rereduce) {
return sum(values);
}
where the definition of first arguments is as follows:
when rereduce is
false, then:
- key will be an array whose elements are arrays of the form [key,id], where key is a key emitted by the map function and id is that of the document from which the key was generated.
- values will be an array of the values emitted for the respective elements in keys.
My question is: when rereduce is false, are there any guarantees regarding the order of key (or values) array elements? My gut feel (based on Reduce vs Rereduce chapter) is that keys, and respectively values, should be ordered, but I do not see any direct confirmation.
Any ideas? Thank you!