OpenFeign / feign

Feign makes writing java http clients easier
Apache License 2.0
9.42k stars 1.92k forks source link

OkHttpClient: added clients cache #2404

Closed illia2m4ch closed 3 months ago

illia2m4ch commented 4 months ago

In case feign.Request.Options settings differ from the default native client okhttp3.OkHttpClient, a new client is created for each request, which leads to creation of a huge number of clients in memory. Added a map for caching soft references of clients.