1
vote
2answers
24 views
Threading in Ruby with a limit
I have a task I need to perform, do_stuff(opts), that will take ~1s each, even while 1 - 10 of them are running in parallel. I need to collect an array of the results for each oper …
0
votes
2answers
53 views
Problem with priority_queue - Writing memory after heap
Hello again,
I am trying to use priority_queue, and program constantly fails with error message HEAP CORRUPTION DETECTED.
here are the snippets:
class CQueue { ...
…
1
vote
2answers
26 views
PHP + MySQL Cycle Queue
I just accepted a similar question (http://stackoverflow.com/questions/1690748/php-mysql-queue), but I realized that it wasn't the correct question for my problem, but was the corr …
1
vote
2answers
50 views
PHP + MySQL Queue
I need a simple table that acts as a Queue.
My MySQL server restriction is I can't use InnoDB tables, only MyISAM.
Clients/workers will work at the same time and they will need to …
3
votes
8answers
136 views
Do any Java libraries provide a random access Queue implementation?
I'm implementing a sliding window over a stream of events, in Java.
So I want a data structure which allows me to do the following:
add to the end of the data structure when new …
1
vote
5answers
101 views
Circular Buffer in Flash
I need to store items of varying length in a circular queue in a flash chip. Each item will have its encapsulation so I can figure out how big it is and where the next item begins …
2
votes
5answers
97 views
A multithreaded queue in Python
I need to perform time consuming tasks in an webapplication.
Because the tasks can be so heavy that they run for minutes they have to run on multiple threads so the user won't have …
3
votes
1answer
57 views
What’s the fastest Perl IPC/message queue for a single machine?
I'm working on a (primarily) Perl project and want to use a message queue to isolate processes from each other. I have a work flow like this:
Input -> Receiver -> Processor(s) -> …
4
votes
2answers
59 views
How to create queues of objects in Django?
I am new to Django and I am trying to build a blog myself. I'm trying to create a feature I've seen implemented in Drupal using the nodequeue module.
What I want to do is to be ab …
0
votes
1answer
14 views
Rails backgroundRB plugin need to schedule it and queue to database for persistancy.
Hi,
I'm trying to do the following:
Run a Worker and a method within it every 15 minutes
Have a log of the job last runtime, in the database table
bdrd_job_queue.
What I've do …
1
vote
4answers
84 views
How can I insert elements into a Queue in C#
In C# I use a Queue collection. I can easily Enqueue or Dequeue. Okay, now I would like to insert something in the middle of the queue or at the beginning of the queue. I don't fin …
0
votes
4answers
50 views
Is a Python Queue needed for simple byte stream between threads?
I have a simple thread that grabs bytes from a Bluetooth RFCOMM (serial-port-like) socket and dumps them into a Queue.Queue (FIFO), which seems like the typical method to exchange …
4
votes
8answers
136 views
Tricky C# syntax for out function parameter
I'm familiar with using out to pass in a simple data type for manipulation, but I can't seem to figure out how to pass in this Queue<> without causing a compile error. Any i …
1
vote
6answers
154 views
Simple queue algorithm question
This is not a request for a queueing algorithm, I know there are plenty.
I'm reading a C# book and it explains the Circular Queue algorithm with a code example. On lines 13, 14 an …
1
vote
3answers
56 views
.NET containers - when are members By Reference, By Value?
I migrate between C++ and VB.NET in my coding ventures... which leads to the occasional confusion about when something is by value or by reference in VB.NET.
Let's say for example …
