I'm trying to find the best way to speed up the delivery of the static images that compose the design of an mvc site. The images are not gzipped, nor cached in the server or on the client (with content expire). Options are:
- Find why images are not cached and gzipped direcly from IIS6
- Write a specialized http handler
- Register a special route for static images and write a bynary actionresult method
What could be the best solution in terms of performance?