Skip to content

Instantly share code, notes, and snippets.

@garystafford
Last active February 23, 2019 17:19
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 garystafford/30852e4cac4106b58162b1c0ba4e0988 to your computer and use it in GitHub Desktop.
Save garystafford/30852e4cac4106b58162b1c0ba4e0988 to your computer and use it in GitHub Desktop.
db.movieDetails.dropIndex('genres_text_title_text_plot_text')
db.movieDetails.createIndex({
title: 'text',
plot: 'text',
genres: 'text'
}, {
weights: {
genres: 4,
title: 2
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment