index.asciidoc 663 B

123456789101112131415161718192021222324252627
  1. [[java-rest-low]]
  2. == Java Low Level REST Client
  3. The low-level client's features include:
  4. * minimal dependencies
  5. * load balancing across all available nodes
  6. * failover in case of node failures and upon specific response codes
  7. * failed connection penalization (whether a failed node is retried depends on
  8. how many consecutive times it failed; the more failed attempts the longer the
  9. client will wait before trying that same node again)
  10. * persistent connections
  11. * trace logging of requests and responses
  12. * optional automatic <<sniffer,discovery of cluster nodes>>
  13. include::usage.asciidoc[]
  14. include::configuration.asciidoc[]
  15. include::sniffer.asciidoc[]