Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for IndexRequestBuilder (0.09 sec)

  1. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

                public BulkResponse addAll(final String index, final List<Map<String, Object>> docList,
                        final BiConsumer<Map<String, Object>, IndexRequestBuilder> options) {
                    sentIndex.set(index);
                    docList.forEach(x -> options.accept(x, new IndexRequestBuilder(this, IndexAction.INSTANCE)));
                    sentDocList.addAll(docList);
                    return new BulkResponse(new BulkItemResponse[0], documentSizeByQuery);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 29.3K bytes
    - Viewed (0)
  2. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java

    import org.opensearch.action.get.MultiGetRequestBuilder;
    import org.opensearch.action.get.MultiGetResponse;
    import org.opensearch.action.index.IndexRequest;
    import org.opensearch.action.index.IndexRequestBuilder;
    import org.opensearch.action.index.IndexResponse;
    import org.opensearch.action.search.ClearScrollRequest;
    import org.opensearch.action.search.ClearScrollRequestBuilder;
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Aug 31 05:32:52 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                final BiConsumer<Map<String, Object>, IndexRequestBuilder> options) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final BulkRequestBuilder bulkRequestBuilder = client.prepareBulk();
            for (final Map<String, Object> doc : docList) {
                final Object id = doc.remove(fessConfig.getIndexFieldId());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
Back to top