Mysql 与替代方案匹配
我需要使用相关性算法进行搜索,数据库是mysql。我必须按日期对结果进行排序,关键字是否在标题中,关键字在文本中出现的次数等等。
比赛并没有给我太多的控制权。
I need a search with a relevance algorithm and the database is mysql. I have to sort the results by date, if keyword is in title or not, number of apparitions of the keyword in the text and so on.
Match against doesn't give me that much control.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的东西会做你想要的:
当然,您可以通过每个条件不仅仅是 0 或 1 来微调所有这些。
Something like this would do what you want:
You can finetune all this of course by not just having 0 or 1 per criteria.
这真的很棒。
This works really great.