We have a web application that monitors several social media's like twitter/facebook. The data that we receive from these social media's are being saved into the database. The data is big, and for that reason I was thinking about using Task
's to save the data into the database.
But I have some concerns about how it works. Can't find in the docs what happens if I start 10 threads for 1 user multiplied by 2000 users? Or maybe 10.000 users.
What exactly will Task
do? Does it have some sort of queue for these Threads
?
Any light on this matter would be really appreciated it. Thanks!