MongoDB Tutorial 0/120 lessons ~6 min read Lesson 56
Text Search
MongoDB has text indexes for keyword search and Atlas Search for full Lucene-grade relevance (typo tolerance, synonyms, faceting).
Course progress0%
Focus
2 guided sections
Practice signal
Concept-first lesson
Career prep
Foundation builder
Introduction
MongoDB has text indexes for keyword search and Atlas Search for full Lucene-grade relevance (typo tolerance, synonyms, faceting).
Syntax reference
js
db.posts.createIndex({ title: "text", body: "text" });db.posts.find({ $text: { $search: "mongodb tutorial" } });
Ready to mark this lesson complete?Track your journey across the entire course.