I would like to migrate to Apache HttpClient 5 for one of the project I am working on. However I am facing a small issue:
With HttpClient 4 we were able to set the bufferSize by setting the defaultConnectionConfig:
HttpClientBuilder.create().setDefaultConnectionConfig(ConnectionConfig.custom().setBufferSize(myBufferSize).build());
Unfortunately I am not able to find that option with HttpClient 5. Is it still possible with the new version or do I need to stick with HttpClient 4? Thanks !