在 MySQL 全文搜索中处理拼写错误的最佳方法

Best way to deal with misspellings in a MySQL fulltext search(在 MySQL 全文搜索中处理拼写错误的最佳方法)
本文介绍了在 MySQL 全文搜索中处理拼写错误的最佳方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 mysql 数据库中有大约 2000 行.

I have about 2000 rows in a mysql database.

每行最多 300 个字符,包含一两个句子.

Each row is a max of 300 characters and contains a sentence or two.

我使用 mysql 内置的全文搜索来搜索这些行.

I use mysql's built in fulltext search to search these rows.

如果可能,我想添加一个功能,以便更正拼写错误和意外拼写错误.

I would like to add a feature so that typos and accidental mispellings are corrected, if possible.

例如,如果有人在搜索框中输入right shlder",则在执行搜索时,这将等同于右肩".

For example, if someone types "right shlder" into the searchbox, this would equate to "right shoulder" when performing the search.

您对添加此类功能的最简单方法有何建议?是否值得添加某种外部搜索引擎,例如 lucene?(对于这么小的数据集,这似乎有点过头了.)或者有没有更简单的方法?

What are your suggestions on the simplest way to add this kind of functionality? Is it worth adding an external search engine of some kind, like lucene? (It seems like for such a small dataset, this is overkill.) Or is there a simpler way?

推荐答案

我认为你应该使用 SOUNDS LIKESOUNDEX()

I think you should use SOUNDS LIKE or SOUNDEX()

由于您的数据集非常小,一种解决方案可能是创建一个新表来存储每个文本字段中包含的单个单词或 soundex 值,并在该表上使用 SOUNDS LIKE.

As your data set is so small, one solution may be to create a new table to store the individual words or soundex values contained in each text field and use SOUNDS LIKE on that table.

例如:

SELECT * FROM table where id IN 
(
    SELECT refid FROM tableofwords 
    WHERE column SOUNDS LIKE 'right' OR column SOUNDS LIKE 'shlder'
)

参见:http://dev.mysql.com/doc/refman/5.0/zh/string-functions.html

我相信用通配符搜索字符串是不可能的:(

I belive it is not possible to wild card seach the string :(

这篇关于在 MySQL 全文搜索中处理拼写错误的最佳方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)