Top "Queue" questions

A queue is an ordered, first-in-first-out data structure.

Python Queue get()/task_done() issue

My consumer side of the queue: m = queue.get() queue.task_done() <rest of the program> Questions: Does …

python multithreading queue
Elegantly implementing queue length indicators to ExecutorServices

Why, oh why doesn't java.util.concurrent provide a queue length indicators for its ExecutorServices? Recently I found myself doing …

java concurrency queue executorservice executor
Difference in LinkedList, queue vs list

What is the difference when creating these two objects Queue<String> test = new LinkedList<String>(); and …

java list data-structures linked-list queue
Logging not working in laravel queue job

I have the below settings in my supervisor/conf.d/myconf.conf file : [program:my-worker] process_name=%(program_name)s_%(…

logging laravel-5 queue jobs
Job queue as SQL table with multiple consumers (PostgreSQL)

I have a typical producer-consumer problem: Multiple producer applications write job requests to a job-table on a PostgreSQL database. The …

sql postgresql queue producer-consumer
Queuing promises

I use mbostock/queue for queuing few async operation. It is more to rate limit (UI generate few events, where …

javascript angularjs queue q
Running multiple Laravel queue workers using Supervisor

I using Laravel queues using a database driver and supervisor to keep a queue worker running all the time: [program:…

laravel laravel-5 queue supervisord laravel-artisan
Is there a limit to the MSMQ queue size?

I know about the size limit for the message (4MB), but is there a limit to the queue size? Best …

size queue limit msmq
C++ - LNK2019 error unresolved external symbol [template class's constructor and destructor] referenced in function _main

[[UPDATE]] -> If I #include "Queue.cpp" in my program.cpp, it works just fine. This shouldn't be necessary, …

c++ templates linker queue linker-errors
is std::queue thread safe with producer and multiple consumers

how can I make a queue thread safe? I need to push / pop / front / back and clear. is there something …

c++ boost queue containers boost-thread