Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Web API support multithreading?

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

like image 675
Rashi Garg Avatar asked Nov 08 '22 09:11

Rashi Garg


1 Answers

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

like image 198
alltej Avatar answered Nov 15 '22 08:11

alltej