Skip to content

Instantly share code, notes, and snippets.

@stephencweiss
Created November 21, 2018 19:52
Show Gist options
  • Save stephencweiss/0b9b7e1ee64abdd5e482546c04c68aaf to your computer and use it in GitHub Desktop.
Save stephencweiss/0b9b7e1ee64abdd5e482546c04c68aaf to your computer and use it in GitHub Desktop.
Mongo createIndex() example
//mongo sh
> db.descriptions.createIndex( { productId: 1 } )
{
"createdCollectionAutomatically" : false,
"numIndexesBefore" : 1,
"numIndexesAfter" : 2,
"ok" : 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment