

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to efficiently run complex queries on MongoDB unindexed fields?
Create an index to efficiently run complex queries. Let us first create a collection with documents −
> db.demo400.insertOne({SubjectName:"Java Spring"}); { "acknowledged" : true, "insertedId" : ObjectId("5e610720fac4d418a0178572") } > db.demo400.insertOne({SubjectName:"Spring Hibernate"}); { "acknowledged" : true, "insertedId" : ObjectId("5e61072dfac4d418a0178573") } > db.demo400.insertOne({SubjectName:"Java Hibernate"}); { "acknowledged" : true, "insertedId" : ObjectId("5e610736fac4d418a0178574") } > db.demo400.createIndex({SubjectName:"text"}); { "createdCollectionAutomatically" : false, "numIndexesBefore" : 1, "numIndexesAfter" : 2, "ok" : 1 }
Display all documents from a collection with the help of find() method −
> db.demo400.find();
This will produce the following output −
{ "_id" : ObjectId("5e610720fac4d418a0178572"), "SubjectName" : "Java Spring" } { "_id" : ObjectId("5e61072dfac4d418a0178573"), "SubjectName" : "Spring Hibernate" } { "_id" : ObjectId("5e610736fac4d418a0178574"), "SubjectName" : "Java Hibernate" }
Following is the query to efficiently perform complex queries on unindexed fields −
> db.demo400.find({ $text: { $search: "Spring" } } )
This will produce the following output −
{ "_id" : ObjectId("5e61072dfac4d418a0178573"), "SubjectName" : "Spring Hibernate" } { "_id" : ObjectId("5e610720fac4d418a0178572"), "SubjectName" : "Java Spring" }
- Related Questions & Answers
- How do I make case-insensitive queries on MongoDB?
- MongoDB query condition on comparing 2 fields?
- Performing distinct on multiple fields in MongoDB?
- How to remove key fields in MongoDB?
- MongoDB query for exact match on multiple document fields
- How to efficiently perform “distinct” with multiple keys in MongoDB?
- How to run MongoDB shell using mongos command?
- Concatenate fields in MongoDB?
- MongoDB query to sum specific fields
- MongoDB query to update selected fields
- How to run Python code on Google Colaboratory?
- How to find MongoDB documents in a collection with a filter on multiple combined fields?
- How do I access subdocuments in MongoDB queries?
- How to retrieve all nested fields from MongoDB collection?
- How to improve MongoDB queries with multikey index in array?
Advertisements