- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for scrollTo (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java
String[] fields = { "scroll1", "scroll2", "scroll3" }; queryFieldConfig.setScrollResponseFields(fields); String[] result = queryFieldConfig.getScrollResponseFields(); assertSame(fields, result); } @Test public void test_setScrollResponseFields() { String[] fields = { "scroll1", "scroll2", "scroll3" };
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 33.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
deleteScrollContext(scrollId); } return count; } /** * Deletes a scroll context to free resources. * * @param scrollId the scroll ID to delete */ protected void deleteScrollContext(final String scrollId) { if (scrollId != null) { client.prepareClearScroll() .addScrollId(scrollId)
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 138.6K bytes - Click Count (1) -
src/main/resources/fess_config.properties
api.access.token.request.parameter= # Permissions for API admin access. api.admin.access.permissions=Radmin-api # Accepted referers for API search. api.search.accept.referers= # Whether to enable scroll for API search. api.search.scroll=false # Headers for API JSON response. api.json.response.headers=Referrer-Policy:strict-origin-when-cross-origin # Whether to include exceptions in API JSON response.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 59.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
if (logger.isDebugEnabled()) { logger.debug("Failed to process a scroll request.", e); } writeJsonResponse(HttpServletResponse.SC_BAD_REQUEST, e); } catch (final Exception e) { if (logger.isDebugEnabled()) { logger.debug("Failed to process a scroll request.", e); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 27 13:56:32 GMT 2026 - 55.4K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** * Get the value for the key 'api.search.scroll'. <br> * The value is, e.g. false <br> * comment: Whether to enable scroll for API search. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getApiSearchScroll(); /** * Is the property for the key 'api.search.scroll' true? <br> * The value is, e.g. false <br>Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 576.9K bytes - Click Count (2)