What is normal asp.net mvc website memory usage?

I really tried to use Google, but only articles on how to troubleshoot memory issues arise. Before starting troubleshooting, I would like to find out if the memory usage of my website is really abnormal or not.

So, this is the asp.net mvc 2 website that runs on IIS 7.5 in production. I assume that normal memory usage is traffic dependent, so here are the average day numbers:

  • 300 unique visitors
  • 400 visits.
  • 3000 page views

I would be very happy to get an idea of โ€‹โ€‹how normal memory usage is for this traffic. I would also be interested to know how memory consumption usually increases with increasing traffic.

thanks a lot

+4
source share
1 answer

It is quite difficult to define โ€œnormal memory usageโ€ for anything without a more complete specification.

For example, if you store a large amount of data in memory, this will affect the "normal memory usage" of your application. One thing that can especially skew this is that data is cached in response to user action. A scenario may arise that users launch on one of the thousands of visits to your site, which forces you to cache 75 MB of additional data, which can (depending on the regular data set) cause a significant difference.

+1
source

Source: https://habr.com/ru/post/1339960/


All Articles