Home  >  Article  >  Backend Development  >  Introduction to creating an index for full-text retrieval with Sphinx_PHP tutorial

Introduction to creating an index for full-text retrieval with Sphinx_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:03:081029browse

The index creation process for full-text search generally has the following steps:
1. Some documents that need to be indexed.

2. Pass the original document to the word segmentation component (Tokenizer).

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

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

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/327858.htmlTechArticleThe index creation process of full-text search generally has the following steps: 1. Some documents (Documents) that need to be indexed. 2. Pass the original document to the word segmentation component (Tokenizer). 3. What you will get...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn