I have an application that uses lucene to search. Search space is in the thousands. Looking for these thousands, I get only a few results, about 20 (this is normal and expected).
However, when I reduce my search space to these 20 entries (i.e. I indexed only these 20 entries and ignored everything else ... so development would be easier), I get the same 20 results, but in a different order ( and scoring).
I tried to disable normal factors using the # setOmitNorms (true) field, but still get different results?
What could be the difference in the calculation?
thank
source
share