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
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
The Web API already has a pool of threads to use, so no need to worry about multithreading.
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 :)