Top "Task-queue" questions

With the Task Queue API, applications can perform work outside of a user request, initiated by a user request.

Background processes in Node.js

What is a good aproach to handle background processes in a NodeJS application? Scenario: After a user posts something to …

javascript node.js background-process task-queue
Parallel processing in PHP - How do you do it?

I am currently trying to implement a job queue in php. The queue will then be processed as a batch …

php multithreading parallel-processing task-queue
how to use q.js promises to work with multiple asynchronous operations

Note: This question is also cross-posted in Q.js mailing list over here. i had a situation with multiple asynchronous …

javascript asynchronous callback task-queue
Is there a performance difference between pooling connections or channels in rabbitmq?

I'm a newbie with Rabbitmq(and programming) so sorry in advance if this is obvious. I am creating a pool …

queue message-queue rabbitmq task-queue
Dynamic queue creation with RabbitMQ

I've been learning RabbitMQ various topologies, however, I couldn't find any reference to dynamic queue creation (aka Declare Queue) emitted …

rabbitmq task-queue
Return data from Laravel Jobs

I am developing API on Laravel for mobile application. Methods will make requests to other API's, combine and filter data, …

php laravel api-design task-queue
How to create multiple workers in Python-RQ?

We have recently forced to replace celery with RQ as it is simpler and celery was giving us too many …

python django redis task-queue python-rq
RabbitMQ: What Does Celery Offer That Pika Doesn't?

I've been working on getting some distributed tasks working via RabbitMQ. I spent some time trying to get Celery to …

python rabbitmq celery task-queue pika
How can I put and get a set of multiple items in a queue?

Worker: def worker(): while True: fruit, colour = q.get() print 'A ' + fruit + ' is ' + colour q.task_done() …

python variables task-queue
Creating a execution queue by using Task.ContinueWith?

I have several actions that I want to execute in the background, but they have to be executed synchronously one …

c# task task-queue