In the recent stress test, I found that when the service is just started, okFeign returns very slowly
I found that the slow processing code is all in okhttp3.OkHttpClient.newCall(okhttp3.Request)
The first entry will try to load the class and cause the thread to block for a long time
I know that block is not a problem for okFeign, but can okFeign provide an "eager initialization" that tries to fully initialize before the service is fully started to avoid this problem?
Comment From: Novery
I figured out it might be my mistake,I will close the issue