- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for max_docs (0.05 sec)
-
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
.param("requests_per_second", requestsPerSecond) .param("scroll", scroll) .param("max_docs", maxDocs) .param("wait_for_completion", Boolean.toString(waitForCompletion)) .body(source) .execute()) { if (response.getHttpStatusCode() == 200) { return true; }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 122.4K bytes - Viewed (1) -
src/main/resources/fess_config.properties
index.reindex.refresh=false # Timeout for reindex operations. index.reindex.timeout=1m # Scroll timeout for reindex operations. index.reindex.scroll=5m # Maximum number of documents for reindex operations. index.reindex.max_docs= # query # Maximum length of search queries. query.max.length=1000 # Timeout (ms) for search queries. query.timeout=10000 # Whether to enable logging for query timeouts. query.timeout.logging=true
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** * Get the value for the key 'index.reindex.max_docs'. <br> * The value is, e.g. <br> * comment: Maximum number of documents for reindex operations. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getIndexReindexMaxDocs(); /** * Get the value for the key 'index.reindex.max_docs' as {@link Integer}. <br>Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2)