, , , , , . , .
CouchDB , . , , , - , "sibling" , , . - , : , CouchDB.
, 2- . , , fruit, apple, plant.
[apple, fruit ], 1
[apple, plant ], 1
[fruit, apple ], 1
[fruit, plant ], 1
[plant, apple ], 1
[plant, fruit ], 1
- apple, banana.
[apple, banana], 1
[apple, fruit ], 1
[apple, plant ], 1
[banana, apple], 1
[fruit, apple ], 1
[fruit, plant ], 1
[plant, apple ], 1
[plant, fruit ], 1
1? : _sum, . ?group_level=2 CouchDB .
:
function(doc) {
var tags = doc.tags || []
tags.forEach(function(tag1) {
tags.forEach(function(tag2) {
if(tag1 != tag2)
emit([tag1, tag2], 1)
})
})
}