- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getSearchlogProcessBatchSizeAsInteger (0.16 sec)
-
src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java
} @Override public String getPurgeByBots() { return "bot,crawler,spider"; } @Override public Integer getSearchlogProcessBatchSizeAsInteger() { return 100; } @Override public boolean isLoggingSearchUseLogfile() { return false; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
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) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* @return The value of found property. (NotNull: if not found, exception but basically no way) * @throws NumberFormatException When the property is not integer. */ Integer getSearchlogProcessBatchSizeAsInteger(); /** * Get the value for the key 'thumbnail.html.image.min.width'. <br> * The value is, e.g. 100 <br> * comment: Minimum width for HTML images in thumbnails.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1)