LikeToCode
LikeToCode

Reputation: 767

Multithreaded stress tests fail

I am doing a stress test of a web service by running many threads of the same process, but the second thread always stops in the middle of running without throwing an exception. How do you figure out what’s wrong?

Upvotes: 1

Views: 168

Answers (1)

Dean J
Dean J

Reputation: 40318

Run a debugger against it, and place breakpoints in logical places to see if you can figure out where it's breaking.

Upvotes: 2

Related Questions