vote up 0 vote down star

How can I minimize the footprint of a website built using MVC. My application currently runs at around 20mb, I'd like to reduce it if possible.

Edit: I've switched hosts, problem solved.

flag

6  
Stop, put down Task Manager, and walk away. – Will Nov 2 at 15:02
Maybe we should be asking you this question. How'd you get it down to 20MB? ;) – Haacked Nov 3 at 6:49
What method of measurement are you using to come up with "around 20mb"? It sounds ridiculously low. – bzlm Nov 3 at 22:41

2 Answers

vote up 2 vote down check

20mb is pretty good! Consider all the libraries and managed resources that need to be brought in to make pretty much any .NET application of notable size work.

If you reach a point where you can point to your application's memory footprint and say with confidence that is actually causing whatever problem you're encountering, then get some details together. Use something like Red Gate products to profile your application and see where the memory hogs and bottlenecks are. Trying to guess beforehand never works.

And aside from that, how much memory does your server have? 2gb? 4gb? Of course we should always pay due diligence to making sure our applications aren't hogs, but at the same time - take advantage of the breathing room modern computing has afforded us!

link|flag
Thats the problem, I currently have an extremely limited server, with just about 1gb – Alexandre Brisebois Nov 2 at 20:37
1  
@Alex properly configured Windows should take about 350, your database server maybe 200, misc. services another 50, that leaves 300mb for your app. If it was taking 260mb that might be a cause for concern. 20, not so much. – Rex M Nov 2 at 20:43
vote up 1 vote down

20mb is not much memory at all in the grand scheme of things. Optimize when you need to, doing so before can be wasteful. Are you hitting resource limitations on your hardware?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.