Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getIndexFieldBoost (0.11 sec)

  1. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

                        SCORE_FIELD, //
                        fessConfig.getIndexFieldId(), //
                        fessConfig.getIndexFieldDocId(), //
                        fessConfig.getIndexFieldBoost(), //
                        fessConfig.getIndexFieldContentLength(), //
                        fessConfig.getIndexFieldHost(), //
                        fessConfig.getIndexFieldSite(), //
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jul 22 04:30:56 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ds/AbstractDataStore.java

            // created
            defaultDataMap.put(fessConfig.getIndexFieldCreated(), systemHelper.getCurrentTime());
            // boost
            defaultDataMap.put(fessConfig.getIndexFieldBoost(), config.getBoost().toString());
            // label: labelType
            // role: roleType
            final List<String> roleTypeList = new ArrayList<>();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java

            final String indexFieldFavoriteCount = fessConfig.getIndexFieldFavoriteCount();
            final String indexFieldClickCount = fessConfig.getIndexFieldClickCount();
            final String indexFieldBoost = fessConfig.getIndexFieldBoost();
            final String indexFieldRole = fessConfig.getIndexFieldRole();
            final String indexFieldLastModified = fessConfig.getIndexFieldLastModified();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Jul 25 01:48:41 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/QueryHelper.java

            queryContext.addFunctionScore(list -> {
                list.add(new FilterFunctionBuilder(
                        ScoreFunctionBuilders.fieldValueFactorFunction(ComponentUtil.getFessConfig().getIndexFieldBoost())));
                ComponentUtil.getKeyMatchHelper().buildQuery(queryContext.getDefaultKeyword(), list);
                list.addAll(boostFunctionList);
            });
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

        }
    
        protected void addBoostValue(final Map<String, Object> map, final float documentBoost) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            map.put(fessConfig.getIndexFieldBoost(), documentBoost);
            if (logger.isDebugEnabled()) {
                logger.debug("Set a document boost ({}).", documentBoost);
            }
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

            }
            // indexingTarget
            putResultDataBody(dataMap, Constants.INDEXING_TARGET, indexingTarget);
            //  boost
            putResultDataBody(dataMap, fessConfig.getIndexFieldBoost(), crawlingConfig.getDocumentBoost());
            // label: labelType
            final LabelTypeHelper labelTypeHelper = ComponentUtil.getLabelTypeHelper();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            }
            // indexingTarget
            putResultDataBody(dataMap, Constants.INDEXING_TARGET, indexingTarget);
            //  boost
            putResultDataBody(dataMap, fessConfig.getIndexFieldBoost(), crawlingConfig.getDocumentBoost());
            // label: labelType
            putResultDataBody(dataMap, fessConfig.getIndexFieldLabel(), labelTypeHelper.getMatchedLabelValueSet(url));
            // role: roleType
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 13:01:38 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * Get the value for the key 'index.field.boost'. <br>
         * The value is, e.g. boost <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getIndexFieldBoost();
    
        /**
         * Get the value for the key 'index.field.created'. <br>
         * The value is, e.g. created <br>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 468.5K bytes
    - Viewed (0)
Back to top