Sphinx 使用 SPH_MATCH_ANY 忽略 SetFieldWeights 和 SetSortMode
嘿伙计们,我试图通过 sphinx 0.99 以我想要的方式排序我的结果,但它不起作用。
我目前使用这个
$cl->SetMatchMode ( SPH_MATCH_ANY );
$cl->SetRankingMode ( SPH_RANK_PROXIMITY_BM25 );
$cl->SetFieldWeights ( array ( "item_title"=>100,"item_publish_date"=>99 ) );
$cl->SetSortMode ( SPH_SORT_EXTENDED , "@weight DESC,item_publish_date DESC" );
$cl->SetLimits(0, 330);
提取所有结果,但它完全忽略 item_publish_date 值。
如果我使用 SPH_MATCH_BOOLEAN 而不是 SPH_MATCH_ANY,它确实按照我想要的顺序显示结果,但它限制了结果太多,因为类似的项目将被完全忽略,这就是为什么我需要使用 SPH_MATCH_ANY 来显示最多的结果。
所以我的问题是,如何使用 SPH_MATCH_ANY 将 item_publish_date 考虑在内?
Hey guys, im trying to order my results in the way I want via sphinx 0.99, but its not working.
Im currently using this
$cl->SetMatchMode ( SPH_MATCH_ANY );
$cl->SetRankingMode ( SPH_RANK_PROXIMITY_BM25 );
$cl->SetFieldWeights ( array ( "item_title"=>100,"item_publish_date"=>99 ) );
$cl->SetSortMode ( SPH_SORT_EXTENDED , "@weight DESC,item_publish_date DESC" );
$cl->SetLimits(0, 330);
Which pulls up all the results, but it ignores the item_publish_date value completely.
If i used SPH_MATCH_BOOLEAN isntead of SPH_MATCH_ANY, it does show the results in the order I want, but then it limits the results too much, as similar items will be completely ignored, thats why I need to use SPH_MATCH_ANY to show the most results.
So my question is, how can i factor in item_publish_date using SPH_MATCH_ANY?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为
item_publish_date
不是文本字段,因此您不需要在SetFieldWeights
方法中使用它,因为它没有任何意义。其次,SPH_MATCH_ANY
排名器还使用匹配单词的计数(而不仅仅是匹配项)来计算权重。这就是为什么您需要进行一些测试并观察不同搜索中的weight
参数。这里有一些关于Sphinx 中的权重的内容
I think
item_publish_date
is not a text field, so you don't need to use it inSetFieldWeights
method, because it's mean nothing. Second,SPH_MATCH_ANY
ranker compute weight using additionally count of matching words, not only matches. Thats why you need to make some tests and watch forweight
parameter in different searches.Here is something to read about weighting in Sphinx