- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 23 for Scroll (0.04 sec)
-
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
/** * Flag indicating whether the client is connected. */ private volatile boolean connected; /** * Scroll for delete operations. */ protected Scroll scrollForDelete = new Scroll(TimeValue.timeValueMinutes(1)); /** * Size for delete operations. */ protected int sizeForDelete = 10; /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Aug 31 05:32:52 UTC 2025 - 25.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/SearchEngineUtilTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java
return queue.poll(); } @Override public void close() { isFinished.set(true); queue.clear(); } /** * Sets the scroll size. * @param scrollSize The scroll size. */ public void setScrollSize(final int scrollSize) { this.scrollSize = scrollSize; } /** * Sets the limit of document size.
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 11K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
this.index = index; } /** * Gets the scroll timeout in milliseconds. * * @return The scroll timeout. */ public int getScrollTimeout() { return scrollTimeout; } /** * Sets the scroll timeout. * @param scrollTimeout The scroll timeout. */ public void setScrollTimeout(final int scrollTimeout) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 34.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java
} return true; } /** * Deletes the scroll context associated with the given scroll ID. * * @param client the OpenSearch client used to clear the scroll context * @param scrollId the ID of the scroll context to be deleted; if null, no action is taken */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 17.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/CrawlTestBase.java
docIds.addAll(resultIds); Map<String, Object> scrollBody = new HashMap<>(); scrollBody.put("scroll", "1m"); scrollBody.put("scroll_id", scrollId); response = given().contentType("application/json").body(scrollBody).get(getEsUrl() + "/_search/scroll"); jsonPath = JsonPath.from(response.asString()); } for (String docId : docIds) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryFieldConfig.java
} /** * Gets the fields that are included in scroll search responses. * * @return array of field names for scroll search responses */ public String[] getScrollResponseFields() { return scrollResponseFields; } /** * Sets the fields that are included in scroll search responses. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
* * This class provides comprehensive search functionality including document search, * scroll search, and bulk operations. It handles search request parameter processing, * query building, response formatting, and search log management. * * Key features: * - Document search with pagination and faceting * - Scroll search for large result sets * - Document retrieval by ID * - Bulk document updates
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java
* @return A SuggestSettingsBuilder instance. */ public static SuggestSettingsBuilder builder() { return new SuggestSettingsBuilder(); } /** * Returns the scroll timeout. * @return The scroll timeout. */ public String getScrollTimeout() { return timeoutSettings.scrollTimeout; } /** * Returns the search timeout.
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 18.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/settings/SuggestSettingsBuilderTest.java
} @Test public void testScrollTimeout() { // Test setting scroll timeout SuggestSettingsBuilder result = builder.scrollTimeout("10s"); assertEquals(builder, result); // Test method chaining assertEquals("10s", builder.timeoutSettings.scrollTimeout); // Test updating scroll timeout builder.scrollTimeout("30s");
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 14.4K bytes - Viewed (0)