Tagged Questions

15
votes
8answers
723 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; …
12
votes
7answers
821 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 …
9
votes
7answers
643 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 …
8
votes
3answers
310 views

cron script to act as a queue OR a queue for cron ?

I'm betting that someone has already solved this and maybe I'm using the wrong search terms for google to tell me the answer, but here is my situation. I have a script that I want to run, but I want …
7
votes
3answers
307 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 …
7
votes
7answers
2k 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 …
7
votes
5answers
4k 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 …
6
votes
1answer
166 views

Best way to obtain indexed access to a Python queue, thread-safe

I have a queue (from the Queue module), and I want to get indexed access into it. (i.e., being able to ask for item number four in the queue, without removing it from the queue.) I saw that a queue …
6
votes
4answers
282 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 …
6
votes
2answers
770 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). …
5
votes
3answers
432 views

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

Hi, 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 …
5
votes
8answers
2k 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?
5
votes
9answers
478 views

Thread queues for dummies…

I have what I assume is a pretty common threading scenario: I have 100 identical jobs to complete All jobs are independent of each other I want to process a maximum of 15 jobs at a time As each job …
5
votes
6answers
384 views

Why do priority queues mostly use 0 as the most important priority?

Why are most priority/heap queues implemented as 0 being the highest priority? I'm assuming I'm missing out some key mathematical principle. As I was implementing my own priority queue recently it …
5
votes
9answers
1k 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 …

1 2 3 4 5 18 next
15 30 50 per page