Sep 20, 2024
Batch indexing operations on one index
Adds, updates, or deletes records in one index with a single API request.
Batching index updates reduces latency and increases data integrity.
- Actions are applied in the order they’re specified.
- Actions are equivalent to the individual API requests of the same name.
This operation is subject to indexing rate limits.
Usage
Copy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import com.algolia.api.SearchClient;
import com.algolia.model.search.*;
SearchClient client = new SearchClient("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY");
client.batch(
"ALGOLIA_INDEX_NAME",
new BatchWriteParams()
.setRequests(
Arrays.asList(
new BatchRequest()
.setAction(Action.ADD_OBJECT)
.setBody(
new HashMap() {
{
put("key", "bar");
put("foo", "1");
}
}
),
new BatchRequest()
.setAction(Action.ADD_OBJECT)
.setBody(
new HashMap() {
{
put("key", "baz");
put("foo", "2");
}
}
)
)
)
);
Did you find this page helpful?