Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for batch_size (0.07 sec)

  1. src/main/resources/fess_config.properties

    paging.search.page.max.size=100
    
    # searchlog
    searchlog.agg.shard.size=-1
    # Request headers to include in search log.
    searchlog.request.headers=
    # Batch size for search log processing.
    searchlog.process.batch_size=100
    
    # Minimum width for HTML images in thumbnails.
    thumbnail.html.image.min.width=100
    # Minimum height for HTML images in thumbnails.
    thumbnail.html.image.min.height=100
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * Get the value for the key 'searchlog.process.batch_size'. <br>
         * The value is, e.g. 100 <br>
         * comment: Batch size for search log processing.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getSearchlogProcessBatchSize();
    
        /**
         * Get the value for the key 'searchlog.process.batch_size' as {@link Integer}. <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

            String[] botNames;
            if (StringUtil.isBlank(value)) {
                botNames = StringUtil.EMPTY_STRINGS;
            } else {
                botNames = value.split(",");
            }
    
            final int batchSize = fessConfig.getSearchlogProcessBatchSizeAsInteger();
    
            final List<SearchLog> searchLogList = new ArrayList<>();
            final Map<String, UserInfo> userInfoMap = new HashMap<>();
            while (!queue.isEmpty()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
Back to top