0
votes
2answers
25 views
async execution of tasks for a web application
A web application I am developing needs to perform tasks that are too long to be executed during the http request/response cycle. Typically, the user will perform the request, the …
3
votes
3answers
118 views
How should I best structure my web application using job queues [and Perl/Catalyst]?
Hi,
I'm writing a web application using the Catalyst framework. I'm also using a Job Queue called TheSchwartz.
I'm wanting to use a job queue because I'm wanting as much of the …
3
votes
9answers
159 views
Queueing solutions for ASP.NET MVC
Hi All,
I looking into the concept of queueing for web apps (i.e. putting some types of job in a queue for completion by a seperate worker, rather than being completed in the web …
1
vote
5answers
214 views
job queue implementation for python
Do you know/use any distributed job queue for python? Can you share links or tools
3
votes
4answers
120 views
What’s the best way to build a queue for long-running jobs in a Grails app?
I have a Grails app that has some computationally intensive optimizations with a running time of ~5 minutes (perhaps more). Currently, I'm doing these in the main request thread, i …
0
votes
1answer
35 views
Have any good links/articles on job queuing & db sharding?
Does anyone have good links on how/when/why to use job queuing to scale web apps? Also, articles on db sharding would be useful too :)
2
votes
4answers
418 views
What’s the best way of implementing a messaging queue table in mysql
It's probably the tenth time I'm implementing something like this, and I've never been 100% happy about solutions I came up with.
The reason using mysql table instead of a "proper …
5
votes
4answers
317 views
Best way to use a DB table as a message/job queue
I have a databases table with ~50K rows in it, each row represents a job that need to be done. I have a program that extracts a job from the DB, does the job and puts the result ba …
