mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:38:09 +00:00
3c5eb6cd1b
This commit converts the low level client and high level client chapters into two parts, which allows each high level client supported api to be on a separate page and show up in the index on the right.
13 lines
538 B
Plaintext
13 lines
538 B
Plaintext
[[java-rest-overview]]
|
|
== Overview
|
|
|
|
The Java REST Client comes in 2 flavors:
|
|
|
|
* <<java-rest-low>>: the official low-level client for Elasticsearch.
|
|
It allows to communicate with an Elasticsearch cluster through http.
|
|
Leaves requests marshalling and responses un-marshalling to users.
|
|
It is compatible with all Elasticsearch versions.
|
|
|
|
* <<java-rest-high>>: the official high-level client for Elasticsearch.
|
|
Based on the low-level client, it exposes API specific methods and takes care
|
|
of requests marshalling and responses un-marshalling. |