You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 16, 2024. It is now read-only.
The [BatchWriter](https://github.com/rjrudin/ml-javaclient-util/tree/master/src/main/java/com/marklogic/client/batch) library
30
-
was created primarily for applications using [marklogic-spring-batch](https://github.com/sastafford/marklogic-spring-batch). But
31
-
it can be used in any environment. It provides the following features:
32
-
33
-
1. Uses Spring's [TaskExecutor library](https://docs.spring.io/spring/docs/current/spring-framework-reference/html/scheduling.html) for parallelizing writes
34
-
1. Supports writes via the REST API or XCC
35
-
36
-
Via Spring's TaskExecutor library, you can essentially throw an infinite number of documents at this interface. The library
37
-
will default to a sensible implementation of [ThreadPoolTaskExecutor](http://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/scheduling/concurrent/ThreadPoolTaskExecutor.html),
38
-
but you can override that with any TaskExecutor implementation you like.
39
-
40
-
Once MarkLogic 9 is available, an implementation will be used that depends on the new Data Movement SDK, which is being
41
-
added to the MarkLogic Java Client API.
42
-
43
-
Here's a sample using two DatabaseClient instances:
0 commit comments