如何在网络应用程序/网站上实现搜索
如何在您的网站/网络应用程序上实现搜索“引擎”?
假设您有一些产品、新闻、事件等,全部存储在数据库中的不同表中。
您可以在静态页面的网站内硬编码自由文本,或者至少将它们作为 gettext 文件。
您希望能够列出包含一些所请求的查询词的页面。
就我个人而言,我创建另一个表(带有 mysql 的全文),其中包含页面的 url 和内容,然后我对该表进行全文搜索并报告结果。
该表由读取数据库并插入数据的脚本定期填充。
有没有更好的方法来实现“简单”搜索?
How do you implement a search "engine" on your website / webapp?
Suppose that you have some products, news, events, and so on, all stored in database in different tables.
You have free text hardcoded inside website in static pages, or at least you have them as gettext files.
You want to be able to list pages that contains some of the query terms requested.
Personally, i create another table (fulltext with mysql) that contains url and contents of the page, and then i do the fulltext search on that table and report results.
This table is periodically filled by a script that reads the db and insert the data.
Are there better methods to implement a "simple" search?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那么“简单”是主观的。您的搜索方法无法扩展,当然不适合复杂的查询(tihnk 布尔搜索或范围查询等)。
我的建议是将数据非规范化为平面结构并将其写入 Apache Solr。它提供了一个 RESTful 接口,用于集成到 PHP 或您喜欢的任何平台中。它提供分面、缓存、复杂的查询语言等。
Well "simple" is subjective. Your approach to search will not scale and certainly not suited to complex queries (tihnk boolean searches, or range queries etc.)
My recommendation would be to denormalize your data into a flat structure and write it to Apache Solr. It offers a RESTful interface for integrating into PHP or whatever platform you prefer. It offers faceting, caching, a sophisticated query language etc.