-
werehuman.psto.net
werehuman 09:25 lithium
Я так понял, в couchdb невозможно сделать аналог SELECT b FROM t WHERE a = "aaa" ORDER BY b
можно!
map:
function(doc){
emit(doc.a, doc.b)
}
reduce:
function(keys, values){
return values.sort()
}
curl localhost:5984