Click anywhere to close

One-to-Many Relationships in CouchDB

Recently I have been playing around a lot with CouchDB, and one of the more challenging aspects of it is understanding the map/reduce functions on views.

This is how I handle a One-to-Many foreign key between different types of objects.

The data is set up as follows:
{
    "_id":1,
    "type":"person",
    "name":"mike"
    ...
},
{
    "_id":2,
    "type":"pet",
    "name":"barky",
    "owner":1
    ...
},
{
    "_id":3,
    "type":"pet",
    "name":"chirpy",
    "owner":1
    ...
}
And here is the map/reduce function that I use to retrieve a person and their pets:
Map:
function( doc ) {
    if( doc.type === "person" )
        emit( [doc._id, 0], doc );
    if( doc.type === "pet" )
        emit( [owner, 1], doc );
}
Reduce:
function( keys, values ) {
    var person = { _id: null, pets: [] }
    for( var value in values ) {
        var cur = values[ value ];
        if( cur.type === "user" ) {
            person._id = cur._id;
        }
        if( cur.type === "pet" ) {
            person.pets.push( cur );
        }
    }
    return person;
}

Now just make sure that you query your view with a group_level of 1, and it should return to you a user object with an array pets.


Recent Posts

ghosts but dear reader, how can you open instagram if your thumbs are ephemeral?
Personal
posted: March 30, 2025
what if? chapter 1 this is my first time publishing work with dialogue. Don't judge me too harshly my dear reader
Personal
posted: March 07, 2025
on refusing to become a pessimist what sound does a hedgehog make?
Personal
posted: March 06, 2025
definitions chapter 3: getting over something wow 3 posts in one day, my dear readers are eating today
Personal
posted: March 06, 2025
i'll have to think about that i guess, at least, trying again will give me something new to write about
Personal
posted: March 05, 2025