Skip to content

Instantly share code, notes, and snippets.

@navanathjadhav
Created June 23, 2022 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save navanathjadhav/7c947dcbc30dccdd0276b1a8ae9be8a0 to your computer and use it in GitHub Desktop.
Save navanathjadhav/7c947dcbc30dccdd0276b1a8ae9be8a0 to your computer and use it in GitHub Desktop.
Example of Indexes
/*
* You can create indexes for various fields from your Schema
*/
// Mongoose
userSchema.index({
email: 1,
firstName: 1,
});
// MongoDB native
db.users.createIndex({ firstName: 1, email: 1 });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment