使用 php 对大型词典执行搜索
目前我正在尝试使用 php 或 mysql 对大型词典执行文本搜索。到目前为止我还没有找到最好的方法来做到这一点。例如,有一个用 Perl 编写的 Text:Scan 模块
http:// search.cpan.org/~iwoodhead/Text-Scan-0.28/Scan.pm
这正是我需要的 php 。如果您知道在 php 中执行此操作的某种方法,请与我分享这些知识! :)
感谢您的帮助!
Currently I am trying to perform text searches against large dictionaries using php or mysql. Until now I haven't found the best way to do that. For example there is a Text:Scan module written in Perl
http://search.cpan.org/~iwoodhead/Text-Scan-0.28/Scan.pm
which is exactly what I need for php. If you are aware of some way to do that in php please share this knowledge with me! :)
Thanks for Your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
据我了解,您可能需要的是类似 Zend_Search_Lucene 的东西。您将从 http://framework.zend.com 获得更多信息/manual/en/zend.search.lucene.overview.html
As far as I understood, what you may need is something like Zend_Search_Lucene. You will get more information from http://framework.zend.com/manual/en/zend.search.lucene.overview.html
看看 Sphinx。
我们正在我们的一个项目中使用它,并且运行良好。
此外,PHP 有 PECL 扩展。
Have a look at Sphinx.
We are using it in one of our projects and it's serving well.
Moreover PHP has PECL extension for it.
MySQL 内置了对全文索引和搜索的支持:
此处。这可能就是您正在寻找的
MySQL has in-built support for full-text indexing and search:
here. This might be what you are looking for