An introduction to Sphinx for creating full text search indexes

  • 2020-06-19 10:02:08
  • OfStack

The index creation process for full text search generally has the following steps:
1. Documents that need to be indexed (Documents).

2. Pass the original document to phrase fragments (Tokenizer).

3. Pass the obtained vocabularies (Token) to the language processing component (Linguistic Processor).

4. Pass the acquired word (Term) to the index component (Indexer).


Related articles: