Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getRankFusionProcessor (0.61 sec)

  1. src/main/java/org/codelibs/fess/util/ComponentUtil.java

            return getComponent(CORS_HANDLER_FACTORY);
        }
    
        /**
         * Gets the rank fusion processor component.
         * @return The rank fusion processor.
         */
        public static RankFusionProcessor getRankFusionProcessor() {
            return getComponent(RANK_FUSION_PROCESSOR);
        }
    
        /**
         * Gets the protocol helper component.
         * @return The protocol helper.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                final OptionalThing<FessUserBean> userBean) {
            final RankFusionProcessor rankFusionProcessor = ComponentUtil.getRankFusionProcessor();
            final List<Map<String, Object>> documentItems = rankFusionProcessor.search(query, params, userBean);
            if (documentItems instanceof final QueryResponseList queryResponseList) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            ComponentUtil.getLdapManager().updateConfig();
            if (resetJobs) {
                ComponentUtil.getJobManager().reboot();
            }
            updateSystemProperties();
    
            ComponentUtil.getRankFusionProcessor().update();
        }
    
        /**
         * Updates system properties from the application configuration.
         */
        public void updateSystemProperties() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
Back to top