Hi Dariusz, You could use fq for filtering (can disable caching to avoid polluting filter cache) and q=*:*. That way you’ll get score=1 for all doc and can rerank. The issue with this approach is that you rerank top N and without score they wouldn’t be ordered so it is no-go. What you could do (did not try) in rescoring divide by score (not sure if can access calculated but could calculate) to eliminate score.
HTH, Emir > On 20 Sep 2017, at 21:38, Dariusz Wojtas <dwoj...@gmail.com> wrote: > > Hi, > When I use boosting fuctionality, it is always about adding or > multiplicating the score calculated in the 'q' param. > I mau use function queries inside 'q', but this may hit performance on > calling multiple nested functions. > I thaught that 'rerank' could help, but it is still about changing the > original score, not full calculation. > > How can take full control on score in rerank? Is it possible? > > Best regards, > Dariusz Wojtas