Tagged Questions
7
votes
4answers
1k views
Message Queues Vs DB Table Queue via CRON
We have a large project coming up soon with quite a lot of media processing (Images, Video) as well email output etc, the sort of stuff normally we'd put into a table called "email_queue" and we use a ...
1
vote
3answers
1k views
Connecting http request/response model with asynchronous queue
What's a good way to connect the synchronous http request/response model with an asynchronous queue based model?
When the user's HTTP request comes it generates a work request that goes onto a queue ...
0
votes
0answers
247 views
I'm putting jobs into a beanstalk queue, but watch and reserve not working
I'm using Beanstalkd via the PHP API (pheanstalk). When I put jobs into the queue, everything seems fine, but I can't seem to be able to retrieve the jobs at the worker end.
After I set it up; it ...
0
votes
1answer
141 views
0
votes
1answer
255 views
Use beanstalkd, for periodic tasks, how to always make a job replaced by its latest one?
I am trying to use beanstalk for queuing a large number of periodic
tasks (for example, tasks need processed every N minutes), for each
task, if the last queued job is not completed (not reserved, i ...
0
votes
1answer
140 views
In memcached, you can put a List as a value. Can you put a list in beanstalkd?
Actually, I would like to use this for logging.
I want to put a dictionary into beanstalkd.
Everytime someone goes into my website, I want to put a dictionary into beanstalkd, and then every night, I ...