|
@@ -1365,6 +1365,9 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
|
/** The key of the configuration. e.g. */
|
|
|
String SEARCHLOG_REQUEST_HEADERS = "searchlog.request.headers";
|
|
|
|
|
|
+ /** The key of the configuration. e.g. 100 */
|
|
|
+ String SEARCHLOG_PROCESS_batch_size = "searchlog.process.batch_size";
|
|
|
+
|
|
|
/** The key of the configuration. e.g. 100 */
|
|
|
String THUMBNAIL_HTML_IMAGE_MIN_WIDTH = "thumbnail.html.image.min.width";
|
|
|
|
|
@@ -6367,6 +6370,21 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
|
*/
|
|
|
Integer getSearchlogRequestHeadersAsInteger();
|
|
|
|
|
|
+ /**
|
|
|
+ * Get the value for the key 'searchlog.process.batch_size'. <br>
|
|
|
+ * The value is, e.g. 100 <br>
|
|
|
+ * @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>
|
|
|
+ * The value is, e.g. 100 <br>
|
|
|
+ * @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>
|
|
@@ -10127,6 +10145,14 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
|
return getAsInteger(FessConfig.SEARCHLOG_REQUEST_HEADERS);
|
|
|
}
|
|
|
|
|
|
+ public String getSearchlogProcessBatchSize() {
|
|
|
+ return get(FessConfig.SEARCHLOG_PROCESS_batch_size);
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getSearchlogProcessBatchSizeAsInteger() {
|
|
|
+ return getAsInteger(FessConfig.SEARCHLOG_PROCESS_batch_size);
|
|
|
+ }
|
|
|
+
|
|
|
public String getThumbnailHtmlImageMinWidth() {
|
|
|
return get(FessConfig.THUMBNAIL_HTML_IMAGE_MIN_WIDTH);
|
|
|
}
|
|
@@ -11311,6 +11337,7 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|
|
defaultMap.put(FessConfig.PAGING_SEARCH_PAGE_MAX_SIZE, "100");
|
|
|
defaultMap.put(FessConfig.SEARCHLOG_AGG_SHARD_SIZE, "-1");
|
|
|
defaultMap.put(FessConfig.SEARCHLOG_REQUEST_HEADERS, "");
|
|
|
+ defaultMap.put(FessConfig.SEARCHLOG_PROCESS_batch_size, "100");
|
|
|
defaultMap.put(FessConfig.THUMBNAIL_HTML_IMAGE_MIN_WIDTH, "100");
|
|
|
defaultMap.put(FessConfig.THUMBNAIL_HTML_IMAGE_MIN_HEIGHT, "100");
|
|
|
defaultMap.put(FessConfig.THUMBNAIL_HTML_IMAGE_MAX_ASPECT_RATIO, "3.0");
|