Skip to content

Instantly share code, notes, and snippets.

@artbikes
Forked from adomado/gist:1226159
Created August 26, 2016 20:37
Show Gist options
  • Select an option

  • Save artbikes/728f4e0fe3d8481fba56277c18ac1b9e to your computer and use it in GitHub Desktop.

Select an option

Save artbikes/728f4e0fe3d8481fba56277c18ac1b9e to your computer and use it in GitHub Desktop.
Example mongodb script
db = connect("localhost:27017/test");
var cursor = db.unicorns.find({gender : "m"});
var total = 0;
while(cursor.hasNext()) {
var obj = cursor.next();
total += (obj.hits || 0);
}
print(total);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment