mongodbHow to do "like" text search in MongoDB?
MongoDB provides a powerful text search feature that allows you to perform "like" text searches. To do this, you need to create a text index on the collection that you want to search. This can be done using the createIndex()
method.
db.collection.createIndex( { "$**": "text" } )
This will create a text index on all fields in the collection. Once the index is created, you can perform a text search using the $text
operator.
db.collection.find( { $text: { $search: "like text" } } )
This will return all documents that contain the phrase "like text".
Code explanation
createIndex()
method: used to create a text index on the collection.$text
operator: used to perform a text search.$search
parameter: used to specify the search phrase.
Helpful links
More of Mongodb
- How to check the version of MongoDB?
- How to use watch in MongoDB?
- How to update one document in MongoDB?
- How to update many documents in MongoDB?
- How to use MongoDB queue?
- How to create a many to many relation in MongoDB?
- How to insert new document into MongoDB?
- How to use hint in MongoDB?
- How to work with time series data in MongoDB?
- How to use unwind in MongoDB?
See more codes...