我将如何使用 php 和 mySQL 实现简单的站点搜索?

How would I implement a simple site search with php and mySQL?(我将如何使用 php 和 mySQL 实现简单的站点搜索?)
本文介绍了我将如何使用 php 和 mySQL 实现简单的站点搜索?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在创建一个允许用户提交报价的网站.我将如何创建一个(相对简单?)返回最相关引号的搜索?

I'm creating a site that allows users to submit quotes. How would I go about creating a (relatively simple?) search that returns the most relevant quotes?

例如,如果搜索词是turkey",那么我会返回turkey"这个词出现两次的引号,然后再返回它只出现一次的引号.

For example, if the search term was "turkey" then I'd return quotes where the word "turkey" appears twice before quotes where it only appears once.

(我会添加一些其他规则来帮助过滤掉不相关的结果,但我主要关心的是.)

(I would add a few other rules to help filter out irrelevant results, but my main concern is that.)

推荐答案

每个人都建议使用 MySQL 全文搜索,但是您应该注意一个巨大的警告.全文搜索引擎仅适用于 MyISAM 引擎(不适用于 InnoDB,后者因其引用完整性和 ACID 合规性而成为最常用的引擎).

Everyone is suggesting MySQL fulltext search, however you should be aware of a HUGE caveat. The Fulltext search engine is only available for the MyISAM engine (not InnoDB, which is the most commonly used engine due to its referential integrity and ACID compliance).

所以你有几个选择:

1.粒子树概述了最简单的方法.您实际上可以从纯 SQL 中获得排名搜索(没有全文,什么也没有).下面的 SQL 查询将搜索表并根据搜索字段中字符串出现的次数对结果进行排名:

1. The simplest approach is outlined by Particle Tree. You can actaully get ranked searches off of pure SQL (no fulltext, no nothing). The SQL query below will search a table and rank results based off the number of occurrences of a string in the search fields:

SELECT
    SUM(((LENGTH(p.body) - LENGTH(REPLACE(p.body, 'term', '')))/4) +
        ((LENGTH(p.body) - LENGTH(REPLACE(p.body, 'search', '')))/6))
    AS Occurrences
FROM
    posts AS p
GROUP BY
    p.id
ORDER BY
    Occurrences DESC

编辑了他们的示例以提供更清晰的内容

上述 SQL 查询的变体,添加 WHERE 语句(WHERE p.body LIKE '%whatever%you%want')等可能会得到您所需要的.

Variations on the above SQL query, adding WHERE statements (WHERE p.body LIKE '%whatever%you%want'), etc. will probably get you exactly what you need.

2. 您可以更改数据库架构以支持全文.通常采取什么措施来保持 InnoDB 引用完整性、ACID 合规性和速度,而无需安装诸如 Sphinx 全文搜索引擎 for MySQL 是将报价数据拆分到它自己的表中.基本上你会有一个表 Quotes 是一个 InnoDB 表,而不是你的 TEXT 字段数据",你有一个引用quote_data_id",它指向 Quote_Data 表上的 ID,它是一个 MyISAM 表.你可以在 MyISAM 表上做你的全文,加入与你的 InnoDB 表一起返回的 ID,瞧你有你的结果.

2. You can alter your database schema to support full text. Often what is done to keep the InnoDB referential integrity, ACID compliance, and speed without having to install plugins like Sphinx Fulltext Search Engine for MySQL is to split the quote data into it's own table. Basically you would have a table Quotes that is an InnoDB table that, rather than having your TEXT field "data" you have a reference "quote_data_id" which points to the ID on a Quote_Data table which is a MyISAM table. You can do your fulltext on the MyISAM table, join the IDs returned with your InnoDB tables and voila you have your results.

3. 安装 Sphinx.祝你好运.

鉴于您的描述,我强烈建议您采用我介绍的第一种方法,因为您有一个简单的数据库驱动站点.第一个解决方案很简单,可以快速完成工作.Lucene 设置起来会很麻烦,特别是如果您想将它与数据库集成,因为 Lucene 主要用于索引文件而不是数据库.Google 自定义站点搜索只会让您的站点名誉扫地(让您看起来很业余和被黑),而 MySQL 全文很可能会导致您更改数据库架构.

Given what you described, I would HIGHLY recommend you take the 1st approach I presented since you have a simple database driven site. The 1st solution is simple, gets the job done quickly. Lucene will be a bitch to setup especially if you want to integrate it with the database as Lucene is designed mainly to index files not databases. Google custom site search just makes your site lose tons of reputation (makes you look amateurish and hacked), and MySQL fulltext will most likely cause you to alter your database schema.

这篇关于我将如何使用 php 和 mySQL 实现简单的站点搜索?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

相关文档推荐

Difference between mt_rand() and rand()(mt_rand() 和 rand() 的区别)
Coalesce function for PHP?(PHP的合并函数?)
Fastest way to convert string to integer in PHP(在 PHP 中将字符串转换为整数的最快方法)
2 Column Mysql Date Range Search in PHP(PHP中的2列Mysql日期范围搜索)
mysql match against ~ example(mysql 匹配 ~ 示例)
How-to: Ranking Search Results(操作方法:对搜索结果进行排名)