- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for score_field (0.04 sec)
-
src/main/java/org/codelibs/fess/query/QueryFieldConfig.java
/** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(QueryFieldConfig.class); /** Field name for document score in search results */ public static final String SCORE_FIELD = "score"; /** Field name for OpenSearch document score */ public static final String DOC_SCORE_FIELD = "_score"; /** Field name for site information in search results */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 21.9K bytes - Viewed (0) -
src/main/resources/fess_config.properties
rank.fusion.window_size=200 # Rank constant for rank fusion. rank.fusion.rank_constant=20 # Number of threads for rank fusion. rank.fusion.threads=-1 # Score field for rank fusion. rank.fusion.score_field=rf_score # acl # Whether to get SMB roles from a file. smb.role.from.file=true # Available SID types for SMB. smb.available.sid.types=1,2,4:2,5:1 # Whether to get file roles from a file.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. -1 */ String RANK_FUSION_THREADS = "rank.fusion.threads"; /** The key of the configuration. e.g. rf_score */ String RANK_FUSION_score_field = "rank.fusion.score_field"; /** The key of the configuration. e.g. true */ String SMB_ROLE_FROM_FILE = "smb.role.from.file"; /** The key of the configuration. e.g. 1,2,4:2,5:1 */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
final Map<String, Object> existingDoc = documentsByIdMap.get(id); final float currentScore = toFloat(existingDoc.get(scoreField)); existingDoc.put(scoreField, currentScore + rrfScore); // Merge searcher names final String[] searcherNames = DocumentUtil.getValue(doc, Constants.SEARCHER, String[].class);
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 27.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/TermQueryCommand.java
/** * Default constructor for TermQueryCommand. */ public TermQueryCommand() { super(); } private static final String SORT_FIELD = "sort"; @Override protected String getQueryClassName() { return TermQuery.class.getSimpleName(); } @OverrideRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 13.6K bytes - Viewed (0)