Skip to content

Instantly share code, notes, and snippets.

@brammond-zz
Created May 17, 2014 22:06
Show Gist options
  • Save brammond-zz/7884884aff077b6120fc to your computer and use it in GitHub Desktop.
Save brammond-zz/7884884aff077b6120fc to your computer and use it in GitHub Desktop.
create scores design and view
function createView() {
var view = {
"language": "javascript",
"views": {
"playername_w_score": {
"map": "function(doc) {if (doc.scorevalue) {emit(doc.scorevalue, doc);}}"
}
}
}
$.ajax({
type: "PUT",
url: DATABASE + "/_design/scores",
contentType: "application/json",
data: JSON.stringify(view)
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment