Posts about Couchdb

Taking an Average in CouchDB

More fun with CouchDB, this time taking an average of something:// map function(doc){ emit(null, doc.info.size) // in place of doc.info.size, you'd put whatever //... more
Posted by Toby on Oct 07, 09
About programming, javascript and couchdb
1 comments

Retrieve The Top N Tags in CouchDB

I am reading up on how map/reduce works in CouchDB, think I am getting the hang of it now, thanks to this great tool. I tried the "Retrieve the top N tags" example on this page. It didn't... more
Posted by Toby on Oct 07, 09
About programming, javascript and couchdb