images are stored in database. I am thinking of storing top 50 images in Asp.net Cache , What imapact does it have memory or overall sites performance. Each image is 200 x 150 in size. Site is hosted , hosting plan is not that high. 15 $ /month.
|
|
|||
|
|
|
Generally, the first step to higher performance would be to move images out of the DB, and simply have urls in the DB. You can then have your site serve those images as static files, very quickly. The OS/server should automatically cache according to available memory. This also has a number of other advantages:
p.s.: given all the advantages of this small seperation of static files and dynamic database information, you could learn a lot about orthogonal system design from this example ;) |
||
|
|
