Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getIndexFieldClickCount (0.34 sec)

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

                        fessConfig.getIndexFieldDigest(), //
                        fessConfig.getIndexFieldUrl(), //
                        fessConfig.getIndexFieldThumbnail(), //
                        fessConfig.getIndexFieldClickCount(), //
                        fessConfig.getIndexFieldFavoriteCount(), //
                        fessConfig.getIndexFieldConfigId(), //
                        fessConfig.getIndexFieldLang(), //
    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/app/web/api/admin/documents/ApiAdminDocumentsAction.java

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

                                                    "ctx._source." + fessConfig.getIndexFieldClickCount() + "+=" + count.toString());
                                            final Map<String, Object> upsertMap = new HashMap<>();
                                            upsertMap.put(fessConfig.getIndexFieldClickCount(), count);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jul 22 02:07:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

                        .boostMode(CombineFunction.MULTIPLY));
                reader.addSort(SortBuilders.fieldSort(fessConfig.getIndexFieldClickCount()));
                reader.addSort(SortBuilders.scoreSort());
                return reader;
            }, docPerReq, () -> {
                systemHelper.calibrateCpuLoad();
                ThreadUtil.sleep(interval);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                final SearchLogHelper searchLogHelper = ComponentUtil.getSearchLogHelper();
                final int count = searchLogHelper.getClickCount(url);
                doc.put(fessConfig.getIndexFieldClickCount(), count);
                if (logger.isDebugEnabled()) {
                    logger.debug("Click Count: {}, url: {}", count, url);
                }
            }
        }
    
    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/mylasta/direction/FessConfig.java

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