You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

  • what is it?
    The AsyncHttpClient (also known as AHC) is a client designed for applications that need to assemble responses from content retrieved from multiple HTTP servers. Using AHC, the distributed content can be gathered in parallel using non-blocking I/O without requiring a thread per request. Greater application throughput is possible because fewer resources are required for each application request.
  • configure your application to use AHC
    To use AHC in your application, you just need to package the AHC jar file in the WEB_INF/lib directory of your application. AHC uses the Mina package to manage the underlying I/O, so the Mina jar files will also need to be included. Typically, this type of packaging is handled automatically by maven dependency management.
  • sample
  • javadoc
  • No labels