Skip to content

Instantly share code, notes, and snippets.

@ryanthegiantlion
Last active November 9, 2016 11:21
Show Gist options
  • Save ryanthegiantlion/c641eabddcb50f8aeb2f8cb352a97247 to your computer and use it in GitHub Desktop.
Save ryanthegiantlion/c641eabddcb50f8aeb2f8cb352a97247 to your computer and use it in GitHub Desktop.
show dbs // list all indexes
use <db>
show collections
db.collection.find(<query>) // find given optional query
db.directmessages.remove({}) // delete all
> use mydb;
> db.dropDatabase();
db.foo.update({}, {$set: {lastLookedAt: Date.now() / 1000}}, { multi: true } // update all
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment