Re: python threads and django views

2011-05-30 Thread Subhranath Chunder
Using the web-server to make such a request to open 10,000 odd URLs seems unrealistic approach. Rather make a separate process to do the same. Thanks, Subhranath Chunder. On Mon, May 30, 2011 at 11:29 PM, rahul jain wrote: > All, > > I would like to know how to do this? > > For example, in my vi

python threads and django views

2011-05-30 Thread rahul jain
All, I would like to know how to do this? For example, in my views I have to visit 10,000 websites (make url connection). Each of those connections are independent connections. I would like to hit them as quickly as possible. Then return an http-response with some results. I have few questions