Tagged Questions

A queue is an ordered, first-in-first-out data structure. Typical implementations of queues support pushing elements to the back and popping them off the front position.

learn more… | top users | synonyms

58
votes
9answers
15k views

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 queue. If the queue reaches a specific size all threads that are filling the queue will be ...
30
votes
8answers
15k views

How do I make and use a Queue in Objective-C?

I want to use a queue data structure in my Objective-C program. In C++ I'd use the STL queue. What is the equivalent data structure in Objective-C? How do I push/pop items?
27
votes
5answers
19k views

In C# would it be better to use Queue.Synchronized or lock() for thread safety?

I have a Queue object that I need to ensure is thread-safe. Would it be better to use a lock object like this: lock(myLockObject) { //do stuff with the queue } Or is it recommended to use ...
25
votes
6answers
1k views

Implement a queue in which push_rear(), pop_front() and get_min() are all constant time operations

I came across this question: Implement a queue in which push_rear(), pop_front() and get_min() are all constant time operations. I initially thought of using a min-heap data structure which has O(1) ...
24
votes
7answers
5k views

Limit size of Queue<T> in .NET?

I have a Queue<T> object that I have initialised to a capacity of 2, but obviously that is just the capacity and it keeps expanding as I add items. Is there already an object that automatically ...
23
votes
1answer
634 views

C# first class continuation via C++ interop or some other way?

We have a very high performance multitasking, near real-time C# application. This performance was achieved primarily by implementing cooperative multitasking in-house with a home grown scheduler. ...
23
votes
2answers
670 views

How do Google App Engine Task Queues work?

I'm confused about Task execution using queues. I've read the documentation and I thought I understood bucket_size and rate, but when I send 20 Tasks to a queue set to 5/h, size 5, all 20 Tasks ...
23
votes
5answers
1k views

TThreadedQueue not capable of multiple consumers?

Trying to use the TThreadedQueue (Generics.Collections) in a single producer multiple consumer scheme. (Delphi-XE). The idea is to push objects into a queue and let several worker threads draining ...
19
votes
4answers
5k views

Why is there no generic synchronized queue in .NET?

I noticed that you can call Queue.Synchronize to get a thread-safe queue object, but the same method isn't available on Queue<T>. Does anyone know why? Seems kind of weird.
18
votes
8answers
1k views

Is there a better way to wait for queued threads?

Is there a better way to wait for queued threads before execute another process? Currently I'm doing: this.workerLocker = new object(); // Global variable this.RunningWorkers = arrayStrings.Length; ...
16
votes
4answers
2k views

Clojure agents consuming from a queue

I'm trying to figure out the best way to use agents to consume items from a Message Queue (Amazon SQS). Right now I have a function (process-queue-item) that grabs an items from the queue, and ...
16
votes
6answers
6k views

Get notification when NSOperationQueue finishes all tasks

NSOperationQueue has waitUntilAllOperationsAreFinished, but I don't want to wait synchronously for it. I just want to hide progress indicator in UI when queue finishes. What's the best way to ...
16
votes
3answers
6k views

How do I clear the std::queue efficiently?

I am using std::queue for implementing JobQueue class. ( Basically this class process each job in FIFO manner). In one scenario, I want to clear the queue in one shot( delete all jobs from the queue). ...
16
votes
7answers
2k views

Good Open Source Queuing Platform?

Anybody know of a good and reliable open source queuing server/ platform? I'm working on a project which we need to process millions of items from a queue per day. My challenge is that the queue is ...
15
votes
2answers
2k views

SQL Server Process Queue Race Condition

I have an order queue that is accessed by multiple order processors through a stored procedure. Each processor passes in a unique ID which is used to lock the next 20 orders for its own use. The ...
14
votes
4answers
132 views

When, where & how should queues be used?

I'm new to enterprise Java development, although I'm sure this question equally applies to any language or platform, such as .NET. For the first time ever now I'm dealing with message queues, and I'm ...
14
votes
1answer
886 views

Immutable queue in Clojure

What is the best way to obtain a simple, efficient immutable queue data type in Clojure? It only needs two operations, enqueue and dequeue with the usual semantics. I considered lists and vectors of ...
14
votes
2answers
6k views

Python: Queue.Queue vs. collections.deque

I need a queue which multiple threads can put stuff into, and multiple threads may read from. Python has at least two queue classes, Queue.Queue and collections.deque, with the former seemingly using ...
13
votes
3answers
307 views

Multithreaded .NET queue problems (C#)

I'm have a wierd error in my code. It's extremely rare (happens once every few weeks maybe), but it's there and I'm not sure why. We have 2 threads running, 1 thread gets networked messages and adds ...
13
votes
4answers
2k views

Sequencing ajax requests

I find I sometimes need to iterate some collection and make an ajax call for each element. I want each call to return before moving to the next element so that I don't blast the server with requests - ...
13
votes
9answers
8k views

Run PHP Task Asynchronously

I work on a somewhat large web application, and the backend is mostly in PHP. There are several places in the code where I need to complete some task, but I don't want to make the user wait for the ...
12
votes
1answer
247 views

Python multiprocessing - Pipe vs Queue

What are the fundamental differences between queues and pipes in Python's multiprocessing package? In what scenarios should one choose one over the other? When is it advantageous to use Pipe()? ...
12
votes
2answers
562 views

Why are Stack<T> and Queue<T> implemented with an array?

I'm reading C# 4.0 in a Nutshell by the Albahari brothers and I came across this: Stacks are implemented internally with an array that's resized as required, as with Queue and List. (pg 288, ...
12
votes
8answers
8k views

Thread-safe blocking queue implementation on .NET

I'm looking for an implementation of thread-safe blocking queue for .NET. By "thread-safe blocking queue" I mean: - thread-safe access to a queue where Dequeue method call blocks a thread untill other ...
11
votes
5answers
345 views

Python utilizing multiple processors

Lets say I have a big list of music of varying length that needs to be converted or images of varying sizes that need to be resized or something like that. The order doesn't matter so it is perfect ...
11
votes
3answers
4k views

LinkedBlockingQueue vs ConcurrentLinkedQueue

My question relates to this question asked earlier. In situations where I am using a queue for communication between producer and consumer threads would people generally recommend using ...
11
votes
8answers
4k views

A priority queue which allows efficient priority update?

UPDATE: Here's my implementation of Hashed Timing Wheels. Please let me know if you have an idea to improve the performance and concurrency. (20-Jan-2009) // Sample usage: public static void ...
10
votes
4answers
864 views

Java Simon Says

I currently have the GUI made for a simon says game, the only problem I'm having is implementing the game logic (my current code will generate a sequence and display user input, but won't save the ...
10
votes
2answers
238 views

What is the idiomatic way to pop a PersistentQueue in a ref?

Given a PersistentQueue in a ref: (def pq (ref clojure.lang.PersistentQueue/EMPTY)) What is the idiomatic way to pop the queue and get the result? My best attempt for your critique: (defn qpop ...
10
votes
2answers
249 views

Why do Queue(T) and Stack(T) not implement ICollection(T)?

Before I even ask, let me get the obvious answer out of the way: The ICollection<T> interface includes a Remove method to remove an arbitrary element, which Queue<T> and Stack<T> ...
10
votes
6answers
1k views

Message queue system

I am in the process of writing a message queue system. My question is... Is it better to do this queue with files or in a database? If I were to choose the database, it needs to check for new jobs ...
10
votes
10answers
943 views

Stack and Queue, Why?

Why and when should I use stack or queue data structures instead of arrays/lists? Can you please show an example for a state thats it'll be better if you'll use stack or queue? Thanks.
10
votes
5answers
1k views

How do you implement a Stack and a Queue in JavaScript?

What is the best way to implement a Stack and a Queue in JavaScript? I'm looking to do the shunting-yard algorithm and I'm going to need these data-structures.
10
votes
12answers
11k views

How do I chain or queue custom functions using JQuery?

I have multiple functions the do different animations to different parts of the HTML. I would like to chain or queue these functions so they will run the animations sequentially and not at the same ...
10
votes
3answers
5k views

How do I store javascript functions in a queue for them to be executed eventually

I have created a Queue class in javascript and I would like to store functions as data in a queue. That way I can build up requests (function calls) and respond to them when I need to (actually ...
10
votes
7answers
3k views

C# Queue or ServiceBus with no dependencies?

Is there a product (ideally open source, but not necessary), that would enable a zero dependency deployment? every service bus or queue library I've been able to find has a dependency on one of the ...
9
votes
2answers
87 views

How to customize blocking behavior of BlockingQueue

I want to create a blocking queue which blocks producer on the basis of customized rules instead of number of items in the queue. For example, Producer produces some files and puts into a queue. ...
9
votes
6answers
283 views

State machine transitions at specific times

Simplified example: I have a to-do. It can be future, current, or late based on what time it is. Time State 8:00 am Future 9:00 am Current 10:00 am Late So, in this example, ...
9
votes
5answers
709 views

Force Oracle to return TOP N rows with SKIP LOCKED

There are a few questions on how to implement a queue-like table (lock specific rows, selecting a certain number of them, and skipping currently locked rows) in Oracle and SQL Server. How can I ...
9
votes
5answers
2k views

Size-limited queue that holds last N elements in Java

A very simple & quick question on Java libraries: is there a ready-made class that implements a Queue with a fixed maximum size - i.e. it always allows addition of elements, but it will silently ...
9
votes
4answers
1k views

What's the best way to organize worker processes in Rails?

I frequently have some code that should be run either on a schedule or as a background process with some parameters. The common element is that they are run outside the dispatch process, but need ...
9
votes
3answers
1k views

What are some good distributed queue managers in php?

I'm working an image processing website, instead of having lengthy jobs hold up the users browser I want all commands to return fast with a job id and have a background task do the actual work. The id ...
9
votes
5answers
7k views

Most elegant way to implement a circular list (FIFO)

What is the most elegant and simple way to implement a circular list, FIFO style? I'm looking for a solution that doesn't resort to hacks like catching exceptions. No, this is not for homework. For ...
8
votes
5answers
1k views

Concurrent Set Queue

Maybe this is a silly question, but I cannot seem to find an obvious answer. I need a concurrent FIFO queue that contains only unique values. Attempting to add a value that already exists in the ...
8
votes
1answer
2k views

Well tested C/C++ lock free queue? [closed]

Possible Duplicate: Is there a production ready lock-free queue or hash implementation in C++ I am looking for a well-tested, publicly available C/C++ implementation of a lock free queue. ...
8
votes
3answers
3k views

A fast queue in Java

I am looking for a fast queue implementation in Java. I see that LinkedList implements the Queue interface, but it will only be as fast as a LinkedList right? Is there a way to have a queue that will ...
8
votes
7answers
2k views

Using a database table as a queue

I want to use a database table as a queue. I want to insert in it and take elements from it in the inserted order (FIFO). My main consideration is performance because I have thousands of these ...
8
votes
3answers
6k views

Java Queue implementations, which one?

From javadoc: A ConcurrentLinkedQueue is an appropriate choice when many threads will share access to a common collection. This queue does not permit null elements. ArrayBlockingQueue is a classic ...
8
votes
4answers
3k views

STL queue iteration

I need to iterate over a queue. www.cplusplus.com says: By default, if no container class is specified for a particular queue class, the standard container class template deque is used. So can I ...
8
votes
6answers
8k views

A generic priority queue for Python

I need to use a priority queue in my Python code. Looking around for something efficient, I came upon heapq. It looks good, but seems to be specified only for integers. I suppose it works with any ...

1 2 3 4 5 27