I would like to reduce a view to get the sum of some ids I have this view

function(doc) {

emit([doc.retweeted_status.user.id.toString(),doc.retweeted_status.user.lang.toString(),doc.retweeted_status.id.toString()]);
}



and would reduce to get the sum of doc_retweeted_status.id.toString()


and try this to reduce, to get the value how many times a id exist in my
couchdb

Is it possible to use it like I imagine ?

thank you guys

Reply via email to