7

I would like to know that Web API support multithreading or not. How does web api handle multiple requests, sequentially or parallely?

Please advise.

~Rashi

CC BY-SA 3.0
1

2 Answers 2

3

The Web API already has a pool of threads to use, so no need to worry about multithreading.

CC BY-SA 3.0
1
1

See this

Must I add explicit threading to my Web API REST methods?

and

http://www.codeproject.com/Articles/38501/Multi-Threading-in-ASP-NET

Might be worthwhile to search before asking :)

CC BY-SA 3.0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.