Home Backend Development PHP Tutorial Learn sphinx sphinx Chinese django sphinx python sphinx usage

Learn sphinx sphinx Chinese django sphinx python sphinx usage

Jul 29, 2016 am 08:53 AM
sphinx

How to use sphinx technology in our PHP development?

Answer: Corresponding to the fields in the MySQL database, it means splitting the Chinese information in the fields into multiple words, and then indexing these words. When querying in the future, first query these index files, then return the primary key IDs of the records that meet the conditions, and then query the MySQL database based on the primary key IDs to return the records.

sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

What is sphinx? (Baidu Encyclopedia)

Note: For sphinx, if there are tens of millions of records in a single table, the response time is at the millisecond level.

sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

Note: By default sphinx only supports English and Russian

Official website:

http://sphinxsearch.com/

Since Sphinx only supports the above two languages, a third-party company has developed a middle segmentation package for sphinx called coreseek

Official website:

http://www.coreseek.cn/

sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

Customer case: http://www.coreseek.cn/products/ft_powered/

Note two points:

  1. sphinx is a full-text search engine that only supports Russian and English

  2. Due to the above reasons, a specialized company has developed a Chinese word segmentation package called coresesk.

  3. There is a company in China that does a better job (massive word segmentation)

    http://www.hylanda.com/

    Story: http://home.hylanda.com/show_5_19.html

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

    Practical operation

  4. Download

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

    2. Build a big data table (lyrics table)

    mysql > source d:/songs.sql

    File Directory:

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法Command:

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

    sphinx installation-use

    Installation

    Please note: sphinx configuration file must not be opened using Windows Notepad. (BOM header)

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

    API interface file: You can use php to call this interface to operate the index file on the sphinx server side.

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

  5. Modify configuration file

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

    Index file

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

    Memory settings:

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

    sphinxd configuration:

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

  6. Indexing

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

    The name after index in the configuration file

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

    Directory structure after indexing

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

    3. Actual use

    a. Start the sphinx service and use the help information to see how to use it.

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

    Use:

  7. You can read the configuration file separately and run it

  8. can also be installed as a system service in Windows to run

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

    Start the sphinx service (read the configuration file for a single start)

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

    is defined as after system service (installation)

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

    Use

    1. Specific use (sphinx process can be seen in the picture below)

    sphinx flow chart:

    sphinx storage engine: Through the following steps, we found that when the PHP program performs a query, it must first return the primary key ID based on the sphinx server, then query the MySQL database based on the primary key ID, and finally return the database.

    At this time, you can think like this, use sphinx as a storage engine of MySQL. At this time, the php program can directly connect to the MySQL server, and the MySQL server obtains the word segmented data from its own sphinx storage engine. There is no need to connect to the sphinx server once. This storage engine is called sphinxSE.

    http://blog.csdn.net/uestc_huan/article/details/6395145

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

  9. Easy to use

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

  10. use

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

    sphinx 文档,sphinx 安装,sphinx cat,sphinx doc,sphinx 中文,django sphinx,python sphinx用法

The above has introduced learning sphinx, including sphinx content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use php extension Sphinx for full text search How to use php extension Sphinx for full text search Jul 29, 2023 am 10:05 AM

How to use PHP extension Sphinx for full-text search Full-text search is one of the common requirements in modern web applications. In order to satisfy users' efficient query and retrieval of data, we can use Sphinx, a powerful open source search engine, to implement the full-text search function. Sphinx is written in C++ and provides PHP extensions to facilitate our use in PHP projects. This article will introduce how to use the PHP extension Sphinx for full-text search

Sphinx PHP application guide to implement full-text search Sphinx PHP application guide to implement full-text search Oct 03, 2023 am 08:37 AM

Introduction to the PHP application guide for implementing full-text search with Sphinx: In modern Web applications, the full-text search function has become an essential feature. Because users often search and match the content they need by entering keywords. In order to provide efficient and accurate search results, we need a powerful search engine. As an open source full-text search engine, Sphinx provides a perfect search solution for PHP. This article will introduce how to use Sphinx to implement

Sphinx PHP application skills in natural language processing Sphinx PHP application skills in natural language processing Oct 03, 2023 am 09:53 AM

SphinxPHP application skills in natural language processing require specific code examples. With the development of the Internet and the advancement of artificial intelligence technology, natural language processing (Natural Language Processing, NLP) has become an important research direction in computer science. The goal of natural language processing is to enable computers to understand, interpret and generate natural language, making the communication between humans and machines more convenient and intelligent. In natural language processing, text retrieval is a very important

Sphinx implements real-time search effects for PHP projects Sphinx implements real-time search effects for PHP projects Oct 03, 2023 am 09:16 AM

Sphinx is an open source full-text search engine that can quickly and efficiently realize search and retrieval of large-scale data. In PHP projects, using Sphinx can achieve real-time search effects and improve user experience and search speed. This article will introduce how to use Sphinx in PHP projects and provide specific code examples. 1. Install Sphinx To achieve real-time search effects in PHP projects, you first need to install Sphinx. It can be found in Sphinx official website

Analysis of PHP implementation method of Sphinx distributed search Analysis of PHP implementation method of Sphinx distributed search Oct 03, 2023 am 08:49 AM

Analysis of the PHP implementation method of Sphinx distributed search Introduction: In today's Internet era, search engines have become one of the main ways for people to obtain information. In order to provide more efficient and accurate search results, some large-scale websites or applications usually use distributed search engines to process search requests. Sphinx is a well-known distributed search engine with good performance and scalability. This article will introduce how to use PHP to implement Sphinx distributed search and provide specific code examples.

Sphinx implements fast search and cache optimization for PHP projects Sphinx implements fast search and cache optimization for PHP projects Oct 03, 2023 am 09:01 AM

Sphinx is an open source full-text search engine that can quickly process large amounts of data and provide efficient search capabilities. Using Sphinx in PHP projects can achieve fast search and cache optimization, improving project performance and user experience. This article will introduce how to integrate Sphinx in a PHP project and illustrate its usage and advantages through specific code examples. 1. Sphinx installation and configuration To use Sphinx, you first need to install and configure it on the server.

Sphinx PHP product search and sorting optimization on e-commerce websites Sphinx PHP product search and sorting optimization on e-commerce websites Oct 03, 2023 am 10:53 AM

Product search and sorting optimization by SphinxPHP in e-commerce websites In e-commerce websites, product search and sorting are one of the important factors for user experience and sales conversion. In order to improve the user's search experience and present results that best match user needs, SphinxPHP is a very powerful and widely used full-text search engine. This article will introduce how to use SphinxPHP to optimize product search and sorting on e-commerce websites, and provide specific code examples. 1. Install and configure Sphin

Sphinx's practical approach to PHP language search optimization Sphinx's practical approach to PHP language search optimization Oct 03, 2023 am 09:24 AM

Sphinx's practical approach to PHP language search optimization requires specific code examples Summary: Sphinx is a powerful open source search engine tool that can be used to implement efficient search functions in web applications. This article will introduce how to use Sphinx for PHP language search optimization and provide detailed code examples. Introduction: With the rapid development of the Internet, users' demand for search functions is also increasing. Efficient search for large-scale data and accuracy of search results,

See all articles