I need to write a program that sends around 200 search queries in parallel to Bing.com as effeciently as possoble. How should I best implement it considering blocking thread, and server errors.
For example: send search http://www.bing.com/search?q=.net, but keyword is different for each serach.
Update
Cuurently, I use HttpClient
and Task
classes to send request, wait/blocking and get result. I am wondering if your solution will be better.
Any ideas or links would be very much appreciated!
Update
As suggested, I should use its api key.