I am using jQuery to loop through a large table (1,000 rows) and for each row I make an AJAX call to process some information and update a database. It takes roughly 30 minutes to complete this entire process and I use a jQuery UI progress bar to provide visibility into the processing status.
I'd like to be able to launch several of these types of long-running processes but am finding that these subsequent AJAX processes seem to be queued until the previous long-running request is complete.
I've read on this forum about browsers limiting the number of concurrent AJAX sessions so this may be what I'm up against here. I'm curious to learn how others address running these types of long-running AJAX calls.
Waiting for 30-minutes before I can launch my next AJAX request doesn't really work for me :)