Single request's performance

  • Thread starter Thread starter Michael Per
  • Start date Start date
M

Michael Per

Scenario: intranet application, one request may take a long time and a lot
or resources to process and it is sort of valid: request is complex and
client is willing to wait. However while this big request is being processed
performance of other requests running in parallel suffers greatly.

Question: is it possible to limit system resources that are allocated for
every thread? This way the big request will take its sweet time and other
requests won't suffer that much... Maybe there are other solutions to "bring
the balance to the force"?

Advises are greatly appreciated.

- Michael Per

PS: Oh, yea, if it matters: Win2000/IIS5/ASP.NET/FW1.1
 
thread.Priority = ThreadPriority.BelowNormal;
thread.Start();
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top