Search code examples
asp.netasp.net-mvcarchitecturehigh-load

How to deliver images effectively using asp.net


My asp.net application creates, stores in memory and shows images to user. Standard HttpHandler gets thread from pool to deliver each image. I think it's not effectively. Can asp.net deliver images more effectively than HttpHandler?

Upd: images are temporary. We store it during 1 hour.


Solution

  • IIS serving the images from disk it the most efficient not sure about effective, as well as using a CDN if possible.