Home Database Mysql Tutorial Mysql全文搜索match against的用法

Mysql全文搜索match against的用法

Jun 07, 2016 pm 06:05 PM
match research all

全文检索在 MySQL 中就是一个 FULLTEXT 类型索引。FULLTEXT 索引用于 MyISAM 表,可以在 CREATE TABLE 时或之后使用 ALTER TABLE 或 CREATE INDEX 在 CHAR、 VARCHAR 或 TEXT 列上创建

对于大的数据库,将数据装载到一个没有 FULLTEXT 索引的表中,然后再使用 ALTER TABLE (或 CREATE INDEX) 创建索引,这将是非常快的。将数据装载到一个已经有 FULLTEXT 索引的表中,将是非常慢的。
1.使用Mysql全文检索fulltext的先决条件
表的类型必须是MyISAM
建立全文检索的字段类型必须是char,varchar,text

2.建立全文检索先期配置
由于Mysql的默认配置是索引的词的长度是4,所以要支持中文单字的话,首先更改这个.
*Unix用户要修改my.cnf,一般此文件在/etc/my.cnf,如果没有找到,先查找一下find / -name 'my.cnf'
在 [mysqld] 位置内加入:
ft_min_word_len = 2
其它属性还有
ft_wordlist_charset = gbk
ft_wordlist_file = /home/soft/mysql/share/mysql/wordlist-gbk.txt
ft_stopword_file = /home/soft/mysql/share/mysql/stopwords-gbk.txt
稍微解释一下:
ft_wordlist_charset 表示词典的字符集, 目前支持良好的有(UTF-8, gbk, gb2312, big5)
ft_wordlist_file 是词表文件, 每行包括一个词及其词频(用若干制表符或空格分开,消岐专用)
ft_stopword_file 表示过滤掉不索引的词表, 一行一个.
ft_min_word_len 加入索引的词的最小长度, 缺省是 4, 为了支持中文单字故改为 2

3.建立全文检索
在建表中用FullText关键字标识字段,已存在的表用 ALTER TABLE (或 CREATE INDEX) 创建索引
CREATE fulltext INDEX index_name ON table_name(colum_name);

4.使用全文检索
在SELECT的WHERE字句中用MATCH函数,索引的关键词用AGAINST标识,IN BOOLEAN MODE是只有含有关键字就行,不用在乎位置,是不是起启位置.
SELECT * FROM articles WHERE MATCH (tags) AGAINST ('旅游' IN BOOLEAN MODE);

5.详细的说明请参数Mysql官方网站

这是Mysql 5.1的,不过4.X也可以做为参考,基本一置.我用的就是Mysql 4.1.

MySQL全文索引与中文分词总结及一般的关键词搜索流程

mysql 全文检索 中文分词

支持中文的MySQL 5.1+ 全文检索分词插件

家用一下搜索引擎就会发现,分词的情况只是出现在当整词命中为0的情况下。
而具体怎样分词,大家可以参考一下baidu搜索试验结果:

·如果搜“徐祖宁宁”,结果为“徐祖”+“宁宁”。(搜人名的情况下,它可能有一个百家姓词典,自动将姓后第一个字归前)
·搜“徐宁愿”,结果为“徐宁愿”。(说明“宁愿”归“徐”所有。同上。因为徐是姓。)
·搜“徐祖宁愿”,结果为“徐祖”+“宁愿”。(因为“宁愿”是词,故“徐”只带“祖”。)
·搜“徐祖宁高”,结果为“徐祖宁”。(因为“宁高”不是关键字,所以“宁”归前词所有。而“高”可能因为是单字,为提高前词搜索效率故被省略。)

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 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks 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

How PHP implements full-text search function and provides convenient information search How PHP implements full-text search function and provides convenient information search Jun 27, 2023 am 09:04 AM

In modern web application development, full-text search functionality has become an essential part. As a language widely used to develop web applications, PHP naturally provides some powerful libraries to support full-text search. In this article, we will delve into how to use PHP to implement full-text search functionality, and provide some tips to make your information search easier. 1. What is full-text search? Full-text search refers to the ability to retrieve a keyword or phrase within a document. Traditional search engines usually simply

How to use PHP and SQLite for full-text search and indexing strategies How to use PHP and SQLite for full-text search and indexing strategies Jul 29, 2023 pm 08:45 PM

How to use PHP and SQLite for full-text search and indexing strategies Introduction: In modern application development, full-text search capabilities are indispensable in many fields. Whether on blogs, news websites, or e-commerce platforms, users are accustomed to using keywords to search. Therefore, to improve user experience and provide better search results, we need to provide full-text search capabilities using appropriate search and indexing strategies. In this article, we will explore how to use PHP and SQLite databases to implement full-text search and

How to use MongoDB to implement full-text search function of data How to use MongoDB to implement full-text search function of data Sep 19, 2023 pm 05:48 PM

How to use MongoDB to implement the full-text search function of data Introduction: With the rapid development of the information age, the full-text search function has become a necessary function for many applications. As a popular NoSQL database, MongoDB also provides powerful full-text search capabilities. This article will introduce how to use MongoDB to implement the full-text search function of data and provide relevant code examples. 1. Introduction to MongoDB full-text search function MongoDB’s full-text search function is based on MongoDB’s text search function.

How to use PHP to implement full-text search and keyword extraction functions How to use PHP to implement full-text search and keyword extraction functions Sep 05, 2023 pm 02:00 PM

How to use PHP to implement full-text search and keyword extraction functions Full-text search and keyword extraction are common functions in modern websites and applications, which can provide users with a better search experience and relevant recommendations. In PHP, we can use full-text indexing and keyword extraction technology to achieve these functions. This article will introduce how to use PHP to implement full-text search and keyword extraction functions, and provide corresponding code examples. Implementation of full-text search function Full-text search refers to searching for records containing specified keywords in text content. exist

How to quickly implement full-text search with PHP and Elasticsearch How to quickly implement full-text search with PHP and Elasticsearch Jul 17, 2023 pm 05:17 PM

How to quickly implement full-text search with PHP and Elasticsearch Full-text search is becoming more and more important in modern applications, helping users quickly find the information they need. Elasticsearch is a powerful open source search engine that provides fast and efficient full-text search capabilities. Combining the power of PHP with the flexibility of Elasticsearch, we can easily implement full-text search functionality. This article will show you how to use PHP and Elasticse

How to implement a full-text search engine in PHP7.0? How to implement a full-text search engine in PHP7.0? May 26, 2023 pm 04:51 PM

With the continuous development of the information age, people increasingly rely on the Internet to obtain information. As one of the platforms for information sharing, web search engines are also constantly evolving and improving. This article will introduce how to implement a full-text search engine in PHP7.0, helping readers make better use of PHP technology and quickly build an efficient search engine. 1. Overview of full-text search engines Full-text search uses keywords or phrases to search throughout the document to find the most matching results. Full-text search engines use algorithms to index documents to speed up searches. exist

Full text search using Solr in PHP Full text search using Solr in PHP Jun 20, 2023 am 09:12 AM

Solr is a Lucene-based search engine that can be used to implement full-text search. Using Solr in PHP for full-text search can help us quickly query relevant data through keywords and improve the accuracy and reliability of search results. This article will introduce how to use Solr in PHP for full-text search. 1. Installation and configuration of Solr First, we need to install Solr and the Solr extension of PHP on the server. For Solr installation steps, please refer to Solr’s official documentation.

See all articles