Top "Queue" questions

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

C++11 thread-safe queue

A project I'm working on uses multiple threads to do work on a collection of files. Each thread can add …

c++ multithreading c++11 queue condition-variable
Producer/Consumer threads using a Queue

I'd like to create some sort of Producer/Consumer threading app. But I'm not sure what the best way to …

java multithreading queue producer-consumer
Run PHP Task Asynchronously

I work on a somewhat large web application, and the backend is mostly in PHP. There are several places in …

php asynchronous background queue task
Which concurrent Queue implementation should I use in Java?

From the JavaDocs: A ConcurrentLinkedQueue is an appropriate choice when many threads will share access to a common collection. This …

java multithreading concurrency queue
Creating a blocking Queue<T> in .NET?

I have a scenario where I have multiple threads adding to a queue and multiple threads reading from the same …

c# .net multithreading collections queue
Deleting queues in RabbitMQ

I have a few queues running with RabbitMQ. A few of them are of no use now, how can I …

queue rabbitmq
How to check queue length in Python

How to check Queue's length in python? I dont see they provide Queue.lenght in python.... http://docs.python.org/…

python data-structures python-3.x python-2.7 queue
Java Collections (LIFO Structure)

I am looking in the Collections framework of Java for a LIFO Structure (Stack) without any success. Basically I want …

java collections stack queue
A generic priority queue for Python

I need to use a priority queue in my Python code, and: am looking for any fast implementations for priority …

python queue
Best implementation of Java Queue?

I am working (in Java) on a recursive image processing algorithm that recursively traverses the pixels of the image, outwards …

java queue