我想根据 live_date、标题和关键字来提升内容。
1)我可以使用 qf 和 pf 来提升标题和关键字:
?q=mySearchTerm&fl=id,title,live_date,content,score&sort=score desc&qf=title^2.0 keywords^1.2 content^1.0&pf=title^2.0 keywords^1.2 content^1.0
2)我可以通过使用函数来计算live_datetime到现在并应用recip函数来提升live_date:
?q={!boost b=$recency v=$qq}&recency=recip(ms(NOW/HOUR,live_datetime),3.16e-11,0.08,0.05)&qq="mysearchTerm"&sort=score desc
3)我怎样才能结合1)和2),以便我可以同时提升live_date +标题和关键字?我试过这个但失败了。谁能在这里指出这个问题?谢谢。
?q={!boost b=$recency v=$qq}&recency=recip(ms(NOW/HOUR,live_datetime),3.16e-11,0.08,0.05)
&qq="mysearchTerm"&qf=title^2.0 keywords^1.2 content^1.0&pf=title^2.0 keywords^1.2 content^1.0&fl=live_datetime,score
请指教。非常感谢。