Skip to content

Instantly share code, notes, and snippets.

@till
Last active December 24, 2015 16:29
Show Gist options
  • Select an option

  • Save till/6828927 to your computer and use it in GitHub Desktop.

Select an option

Save till/6828927 to your computer and use it in GitHub Desktop.
{
"_id": "_design/foo",
"views": {
"get_latest": {
"map": "function(doc) { emit([doc.name, doc.date], 1); }",
"reduce": "_sum"
}
}
}
[
{
"_id": 2,
"name": "hello",
"date": "2013-01-01"
},
{
"_id": 3,
"name": "hello",
"date": "2013-02-01"
},
{
"_id": 4,
"name": "world",
"date": "2013-01-01"
}
]
curl http://localhost/db/_design/foo/get_latest?group=true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment