Re: qf in conjunction with boost

2019-06-29 Thread Mark Sholund
On further reading it seems that maybe &boost=map(popularity_d,0,0,1) might work On Sat, Jun 29, 2019 at 8:56 PM, Shawn Heisey wrote: > On 6/27/2019 8:54 PM, Mark Sholund wrote: >> qf=title^5 description^5 _text_ >> >> And now I want to include additional boosting based on a popularity >> score

Re: qf in conjunction with boost

2019-06-29 Thread Mark Sholund
Thanks for you reply. The problem I ran into with using the boost parameter was that not all of my documents have the boosting field and those were coming back with a score of zero. I tried setting a default for that field but it didn’t help. I found somewhere that using the boost parser with

Re: qf in conjunction with boost

2019-06-29 Thread Shawn Heisey
On 6/27/2019 8:54 PM, Mark Sholund wrote: qf=title^5 description^5 _text_ And now I want to include additional boosting based on a popularity score include with some documents. I’ve done this as follows q={!boost b=map(popularity_d,0,0,1)} However now it seems that the score is the same rega

Re: qf in conjunction with boost

2019-06-29 Thread Mark Sholund
No responses yet, is my question unclear or is this not possible? On Thu, Jun 27, 2019 at 10:54 PM, Mark Sholund wrote: > Hello, > > I have been using the following to boost based on field content. > > qf=title^5 description^5 _text_ > > And now I want to include additional boosting based on a

qf in conjunction with boost

2019-06-27 Thread Mark Sholund
Hello, I have been using the following to boost based on field content. qf=title^5 description^5 _text_ And now I want to include additional boosting based on a popularity score include with some documents. I’ve done this as follows q={!boost b=map(popularity_d,0,0,1)} However now it seems th