快速多标签搜索加上结果排序和分页?
有人可以解释一下 StackOverflow 搜索是如何工作的吗?我想将相同的功能添加到我正在开发的项目中。
在SO中,可以通过多个标签(例如c#、java)过滤问题并获取按日期或投票数排序/分页的结果?
我意识到带有全文引擎的 RDBMS 可用于对问题进行过滤和排序,但我不确定这是否是最佳解决方案?
是否有可能以某种方式从全文索引中获取前 N 个有序结果?
也许使用 Lucene.NET 或 Redis 或类似的东西?
Can somebody explain how StackOverflow search works? I would like to add same features to a project I'm working on.
In SO, it's possible to filter the questions by multiple tags (e.g. c#, java) and get results sorted/paged by date or number of votes?
I realize that RDBMS with full-text engine can be used to filter and sort the questions but I'm not sure if that's the best solution?
Is it possible to somehow get top N ordered results from a full-text index?
Maybe Lucene.NET or Redis or something similar is used?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
他们的旧方法是自制 + 全文 SQL
如何在 Lucene 中按标签搜索
Top N
与 Lucene使用 Lucene 分页
Their old method was Homebrew + Full Text SQL
How to search by tags in Lucene
Top N
with LucenePaging with Lucene