So, in a scenario where we have web site/app that has some static images (layout parts, icons, etc...) and some images within the actual content (user posts containing images, e.g.) - is it usual/preferable to use CDN in both cases or is it more common to use CDN for static content and without CDN (blob storage directly) for content images?
Asked
Active
Viewed 146 times
1 Answers
1
Here is a good SO answer about this, and the following is the related info:
You can go with CDN if you want, but it's best to use CDN for infrequently-changing content (as you can't forcibly expire the content). So, if you have some CSS, background images, etc. that don't change too often, those are great CDN candidates. If it's a daily-changing front-page HTML file, I would skip CDN on that one.
Hope it helps.

Ivan Glasenberg
- 29,865
- 2
- 44
- 60
-
I am sorry, of course its helpful. I was waiting if someone else would add another answer and forgot about it in the meantime. My bad, sorry. Could you just add a sentence of your opinion about the case where its not daily-changing html but for example an image (content image, not backgrounds) within a news article, e.g.? Would you use CDN or storage directly? – dee zg Jan 19 '20 at 09:08