I'm using imgix for CDN and resizing. I noticed that the actual image download time is low but the time for DNS lookup and initial connection is comparatively very large. What can I do to improve them? This is not only true for the first image but for every image.
Asked
Active
Viewed 58 times
0
-
One approach to dealing with latency is to fire multiple requests off in parallel, then all 500ms delays happen simultaneously instead of sequentially. Only helps if you are grabbing multiple images. – Mark Setchell Dec 06 '22 at 23:10