Skip to content

Instantly share code, notes, and snippets.

@thanos
Created August 2, 2010 17:50
Show Gist options
  • Save thanos/505015 to your computer and use it in GitHub Desktop.
Save thanos/505015 to your computer and use it in GitHub Desktop.
{
"_id": "_design/tests",
"_rev": "7-33b9ed5cb7a82e86d440f83f00cd341e",
"language": "javascript",
"views": {
"id": {
"map": "function(doc) {\n emit(doc._id, doc);\n}"
},
"date": {
"map": "function(doc) {\n emit(doc.date, doc);\n}"
},
"hourEnd": {
"map": "function(doc) {\n emit(doc.hourEnd, doc);\n}"
},
"loadAvgHourlyDAY": {
"map": "function(doc) {\n emit(doc.loadAvgHourlyDAY, doc);\n}"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment