configuration.asciidoc 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. [[configuration]]
  2. == Configuration
  3. Almost every aspect of the client is configurable. Most users only need to
  4. configure a few parameters to suit their needs, but it is possible to completely
  5. replace much of the internals if required.
  6. Custom configuration is accomplished before the client is instantiated, through
  7. the ClientBuilder helper object. You can find all the configuration options and
  8. check sample code that helps you replace the various components.
  9. To learn more about JSON in PHP, read <<php_json_objects>>.
  10. * <<host-config>>
  11. * <<set-retries>>
  12. * <<http-meta-data>>
  13. * <<enabling_logger>>
  14. * <<http-handler-config>>
  15. * <<namespaces>>
  16. * <<connection_pool>>
  17. * <<selectors>>
  18. * <<serializers>>
  19. * <<connection-factory>>
  20. * <<endpoint-closure>>
  21. * <<config-hash>>
  22. * <<per_request_configuration>>
  23. * <<future_mode>>
  24. include::php_json_objects.asciidoc[]
  25. include::host-config.asciidoc[]
  26. include::set-retries.asciidoc[]
  27. include::http-meta-data.asciidoc[]
  28. include::logger.asciidoc[]
  29. include::http-handler.asciidoc[]
  30. include::namespaces.asciidoc[]
  31. include::connection-pool.asciidoc[]
  32. include::selectors.asciidoc[]
  33. include::serializers.asciidoc[]
  34. include::connection-factory.asciidoc[]
  35. include::endpoint-closure.asciidoc[]
  36. include::config-hash.asciidoc[]
  37. include::per-request-configuration.asciidoc[]
  38. include::futures.asciidoc[]