Skip to content

Instantly share code, notes, and snippets.

@FrancisVarga
Created July 27, 2010 10:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FrancisVarga/492025 to your computer and use it in GitHub Desktop.
Save FrancisVarga/492025 to your computer and use it in GitHub Desktop.
I want the last User (Ossi) the Date are highest
//Document 1
{
"_id": "197c15ce8ce054693cbe80dd25002238",
"_rev": "2-eee6f8cafea101f19c5fa155d8002aab",
"name": "Tidde",
"date": 100
}
//Document 2
{
"_id": "197c15ce8ce054693cbe80dd25002469",
"_rev": "2-d4cdb154691a455500f7b8c03b69224a",
"name": "Ossi",
"date": 200
}
//Document 3
{
"_id": "197c15ce8ce054693cbe80dd25001f5d",
"_rev": "1-a3b5a010afdc34c2c2d042257675292e",
"name": "Kuli",
"date": 80
}
//View
function(doc) {
emit(doc.date, doc);
}
//URL
_design/user/_view/last?startKey=90&endKey=190
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment