Why are two requests with different clients from the same computer cache misses on cloudfront?
My website uses cloudfront for its images. If I load a webpage in a browser, and then use curl to request an image on that page, then the request with curl is a cache miss. A subsequent request with curl is a cache hit. example: run this twice: curl --verbose https://d1hvwudqvjuczb.cloudfront.net/assets/landing/splash_dickenko-2199af423f275d0784c1813cbaab5645.jpg` The first time, X-Cache will be "Miss from cloudfront", the second time it will be "Hit from cloudfront". So it seems cloudfront is using some aspect of the request to decide if it should refetch the image or not. What could this