How would I start a long-running job from within a Catalyst app? I want a page from which the user can upload a list of URLs, and the application would then go and download these URLs. I need to implement an AJAX progress indicator that would then show the status of this job.
Asked
Active
Viewed 477 times
1 Answers
5
You might try Catalyst::Plugin::UploadProgress. Its intended to be used for file uploads, but I'm thinking it can be used for what you're doing as well since you're downloading the URL (which is honestly like uploading a file to the server anyways).

Brad Gilbert
- 33,846
- 11
- 78
- 129

Weegee
- 2,225
- 1
- 17
- 16
-
1I linked it. Why would I need to regurgitate something here that a user can read through the link? – Weegee Jul 22 '09 at 15:48
-
This looks good, I can use its code as a reference for how to implement progress reporting. Thanks! – A. Murka Jul 23 '09 at 02:27