Visual Studio Virtual Machine Boot Test

I am currently working on writing a load testing application that uses the Load Test using Visual Studio 2010. The load test will simulate 20 users on the same computer, and I need some data that will be used in memory between all the simulated users.

I was surprised, I could not find the documentation that answers the following question:

What makes each virtual user different from context? Does each virtual user run tests in their own process? Maybe in your own application domain? Or just on your own topic? I need to know, because if each user runs tests in his own process, then the entire cache in memory is not shared and is created for each user, and not once for all of them, which is bad for me.

+3
source share
2 answers

You can use Process Explorer ( http://technet.microsoft.com/en-us/sysinternals/bb896653 your extended version of the task manager) to get an answer.

Visual Studio Process Explorer. . Visual Studio . " .NET", AppDomains.

, Fiddler StresStimulus - http://stresstimulus.stimulustechnology.com. .

+1

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


All Articles