Rafay Zia Mir
Rafay Zia Mir

Reputation: 2116

Many browsers are needed but it takes too much memory

Hi I am working on an application in which I need almost 10 webBrowsers which render when some button is clicked. Now this amount of browsers takes too much memory on RAM. Is there any way to reduce the memory consumption with the mentioned number of browsers? Thanks

Upvotes: 1

Views: 127

Answers (2)

Mesh
Mesh

Reputation: 6462

As long as you make sure you dispose or reuse any WBCs - don't worry about it. 100 megs in the task manager is not worth worrying about.

Upvotes: 1

WraithNath
WraithNath

Reputation: 18013

I doubt there is a lot you can do to reduce memory consumption depending on where the memory is being used.

It depends on what is taking the memory, you could try launching the browsers in No-addon mode which would save some memory, additionally if the memory consumption is increasing becuase of data in the pages stored in the ViewState of the page then moving data from the ViewState to the session would help with this.

Upvotes: 1

Related Questions