如果属性值在列表中或不在列表中,则提升 Solr 结果
Boost Solr results if the value of an attribute is within a list or not
我有一个类似的查询:
我需要提升结果 user_id_i:(123 OR 222 OR 512 OR 932)
类似于 => __val_:"if(user_id_i:(123 OR 222 OR 512 OR 932), 100, 0)"
但显然我需要一个函数 returns 对于那个特定问题是对还是错。
我认为您可以为此使用 boost
查询参数,但您必须使用 edismax 查询解析器,而不是 lucenePlusSort 解析器。
(http://wiki.apache.org/solr/ExtendedDisMax#boost_.28Boost_Function.2C_multiplicative.29)
[boost] => product(if(exists(query({!v='user_id_i:(123 OR 222 OR 512 OR 932)'})),100,1))
我有一个类似的查询:
我需要提升结果 user_id_i:(123 OR 222 OR 512 OR 932)
类似于 => __val_:"if(user_id_i:(123 OR 222 OR 512 OR 932), 100, 0)"
但显然我需要一个函数 returns 对于那个特定问题是对还是错。
我认为您可以为此使用 boost
查询参数,但您必须使用 edismax 查询解析器,而不是 lucenePlusSort 解析器。
(http://wiki.apache.org/solr/ExtendedDisMax#boost_.28Boost_Function.2C_multiplicative.29)
[boost] => product(if(exists(query({!v='user_id_i:(123 OR 222 OR 512 OR 932)'})),100,1))