What is Full-text search? Definition and explanations
Full-text search finds documents by the words they contain rather than by an exact field match. The engine splits text into terms, normalises them (case, accents, stems) and builds an inverted index mapping each term to the documents where it appears. Results are then ranked by relevance, not merely filtered.
In one sentence
Full-text search finds documents by the words they contain, ranked by relevance.