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

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


No need - the asp.net framework already pools a number of threads for handling a number of requests concurrently.

Incoming requests are enqueued, and pooled threads take their turn at dequeuing requests and handling them.

You can find more about how asp.net handles this here: http://www.codeproject.com/Articles/38501/Multi-Threading-in-ASP-NET

Edit

You should, however, defer CPU/IO-intensive workloads to other threads (preferably using TPL), so that the threads managed by asp.net remain responsive.

Warning: if you do spawn new threads while handling a request, make sure they have all finished before returning from the "REST method". You may think "I'm gonna return to the user asap, and leave a thread in the background saving stuff to the database." This is dangerous, mainly because the Application Pool may be recycled, aborting your background threads. Read more here: http://haacked.com/archive/2011/10/16/the-dangers-of-implementing-recurring-background-tasks-in-asp-net.aspx

Do not return until all threads have finished.


As dcastro said, normally you don't need to worry about requests interfering with each other.

However, if you are using things like global variables or single instance classes then it is likely that you will have threading issues. Just stay away from that stuff and you'll be fine.