Skip to content

Instantly share code, notes, and snippets.

@langsdlc
Created March 17, 2016 17:49
Show Gist options
  • Save langsdlc/d09db1f217deb2bdd83c to your computer and use it in GitHub Desktop.
Save langsdlc/d09db1f217deb2bdd83c to your computer and use it in GitHub Desktop.
search function
function(doc){
index("default", doc.properties.title);
if (doc._rev){
index("rev", doc._rev, {"store": "yes"});
}
if(doc.properties.title){
index("title", doc.properties.title, {"store": "yes"});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment