DEV Community

Discussion on: What image-hosting sites do you use?

 
munamohamed94 profile image
Muna Mohamed

Nice! I'm familiar with S3 but I haven't heard about the S3 + Cloudfront before. Will definitely check it out! Thank you both for the recommendations! :)

Thread Thread
 
danroc profile image
Daniel da Rocha
Thread Thread
 
notriddle profile image
Michael "notriddle" Howell

CloudFront is a pull CDN, meaning that it fetches a file when someone requests it so that next time it's physically closer to them. It is not a magic "make it faster" panacea.

If a file is expected to be requested by a lot of people in a lot of different places, like on a popular website, it'll make it faster. If it's being uploaded by one person and downloaded by one other person, like in a chat app, it'll probably make it slower.

A push CDN might make everything faster all the time, but those are even more expensive.