- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for addScoreBooster (0.06 sec)
-
src/main/java/org/codelibs/fess/score/ScoreBooster.java
/** * Enables this score booster. */ protected void enable() { final ScoreUpdater scoreUpdater = ComponentUtil.getComponent("scoreUpdater"); scoreUpdater.addScoreBooster(this); } /** * Updates the score of documents. * @param params The parameters for the update. * @return The number of updated documents. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/score/ScoreUpdater.java
} }); return resultBuf.toString(); } /** * Adds a score booster. * @param scoreBooster The score booster. */ protected void addScoreBooster(final ScoreBooster scoreBooster) { scoreBoosterList.add(scoreBooster); scoreBoosterList.sort((b1, b2) -> b2.getPriority() - b1.getPriority()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2K bytes - Viewed (0)