You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's a spin off from #12204#12245.
I'm not sure it's really necessary, please advise.
Now ToParentBlockJoinQuery.BlockJoinScorer#explain requests expensive explain() for every matching child doc. Here are possible measures:
2. call score() in the beginning of explain(), use returned score to find child doc (for Min,Max modes)
3. drag child scorer over block to count matches
4. request explain() only for the child found at 2.
WDYD?
The text was updated successfully, but these errors were encountered:
it can be implemented, but how much effort into explain performance at this time. I don't think now is the time to address this aspect of a feature that has been broken for years and remains broken.
Description
It's a spin off from #12204 #12245.
I'm not sure it's really necessary, please advise.
Now
ToParentBlockJoinQuery.BlockJoinScorer#explain
requests expensiveexplain()
for every matching child doc. Here are possible measures:2. call score() in the beginning of explain(), use returned score to find child doc (for Min,Max modes)
3. drag child scorer over block to count matches
4. request explain() only for the child found at 2.
WDYD?
The text was updated successfully, but these errors were encountered: