Sphinx搜索引擎及相关标签
我正在使用 Sphinx 搜索引擎使用标签来索引我的所有 Intranet 文档。这样我就可以毫不费力地找到带有一个或多个标签的特定文档。
我想进一步使用 StackOverflow“相关标签”功能等新功能。
有谁知道使用 Sphinx 执行此操作的最佳方法?
谢谢
I'm using Sphinx search engine to index all my Intranet documents using tags. With that I don't have any trouble to find specific documents with one ore more tags.
I want to go further with a new feature like the StackOverflow "related tags" feature.
Does anybody know the best way to do this with Sphinx ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以对文档中要查找相关项目的所有术语运行布尔 OR 查询。它可能会相当慢,因为数据库中的所有文档都必须根据相似性进行排名,除非您使用 and:ed 术语限制搜索。请在此处查看我的文字: https://stackoverflow.com/questions/3121266/efficient-item -相似性搜索使用sphinx
You run a boolean OR query on all terms in the document you want to find related items for. It can be fairly slow because all documents in the database has to be ranked on similarity, unless you limit the search using and:ed terms. See my text here: https://stackoverflow.com/questions/3121266/efficient-item-similarity-search-using-sphinx