Worker process recycles because it reached its virtual memory limit

后端 未结 4 1824
醉话见心
醉话见心 2021-01-12 02:09

We host a rather large (self written) ASP.NET website for our customers. It consists of a web service, a web site and a image serving web site, all three in their own virtua

4条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-12 02:46

    Just as an observation... If your "image serving" site happens to do any inline image processing/generation, you can quickly swallow up memory by not calling Dispose() on any disposable resources - particularly those that are wrapping native functionality...

    It's not a direct answer to your question, but it might help to look into the underlying problem that is causing the rampant memory use.

提交回复
热议问题