Home > Backend Development > PHP Tutorial > 我们这个站的搜索是怎么做的呀?

我们这个站的搜索是怎么做的呀?

WBOY
Release: 2016-06-06 20:11:44
Original
1083 people have browsed it

我们这个站(sf)的搜索是怎么做的呀?

回复内容:

我们这个站(sf)的搜索是怎么做的呀?

xunsearch

关键词,单独放一个表,关系放一个表。
然后搜的时候先找每个关键词对应tid,然后去关系表找索引。
最后把找出的合并……
当然这个想的太简单,也就是typecho那样差不多。
我感觉这站是直接全文搜索,或者调用的搜索引擎API。

Sphinx 对可搜索数据建立索引,搜索索引得到结果(一般为数据对应的Id),然后通过id搜索在查询数据。也可以将Sphinx和MySQL编译在一起安装,可通过直接查询MySQL 实现搜索。
也有其他的来源软件,不确定具体情况,Sphinx 可实现类似效果。

1,最简单的 SQL like
2,sphinx 实现中文索引

也可以实现个简单版的sphinx

小白的回答:sql语句的like

Related labels:
php
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template