Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
565 views

Producer/consumer system using database (MySql), is this feasible?

I need to use something to coordinate my system with several consumers/producers each running on different machines with different operating systems. I have been researching on using MySql to do this, ...
4
votes
2answers
141 views

Best way to implement a multiple producer/consumer pattern in Java 6

So I have multiple steps stage 1 -> stage 2 -> stage 3 -> stage4 so in some cases the producer would be a consumer, and at each stage there are multiple producers/consumers to make use of multiple ...
2
votes
1answer
57 views

.NET Consumer/Producer (Queue)

I'm new at .NET/Threads and I'd like to know if anyone can help me on this exercise. I need to replace the comments in order to make it work without locking the threads: private Queue<int> ...
2
votes
1answer
188 views

Producer/consumer pattern in Java

I'm thinking how to implement the producer/consumer pattern in Java. Assume that I have 3 threads and a List containing tasks (say it's about 5 tasks). Each thread grab the task from the list and ...
2
votes
1answer
357 views

How does Android/DalvikVM process Handlers?

I'm wondering how Handlers are processed in Android/DalvikVM. I'm writing an application for Android, and in one class I have a Handler method which receives messages from another class. Will the ...
2
votes
1answer
175 views

Producing WSRP 1.0/2.0 from a standalone webapp - state of the art

I intend to produce WSRP interfaces from a standalone Java web application so that one can embed its front-end in portals (Liferay, IBM websphere portal), aside standalone front-end and back-ends. ...
2
votes
2answers
220 views

My Produce Consumer Hangs

Please copy the program below and try running in your IDE. It's a simple Produce Consumer implementation - it runs fine when I use one Producer and one Consumer thread but fails when using 2 each. ...
1
vote
3answers
115 views

multi-threaded consumer,producer C code, not performing?

I'm trying to do a simple multi-threaded consumer/producer, where multiple reader and writer thread, read from a file to the buffer and then from buffer back into a file. It should be thread safe. ...
1
vote
2answers
69 views

consumer producer c# implementation with 1 timed consumer for a bulk sending algorithm

I need to implement a module that can have multiple inputs to a dictionary (multiple threads writing to a dictionary) and 1 timed consumer that takes this dictionary, sends it away using some ISender ...
1
vote
3answers
757 views

Java Threads Producer Consumer problem not working properly

I am trying to learn threads and hence I wrote a sample producer consumer problem wherein the producer produces numbers from 1 to 10 and the consumer has to display them. But only the consumer ...
1
vote
2answers
306 views

Multiple Producer Multiple Consumer lock-free (or even wait-free) queue

I'm searching for documentation on how to write MP/MC queue to be lock-free or even wait-free. I'm using .Net 4.0. Found a lot of C++ code, but I'm not very familiar with memory models, so there is a ...
1
vote
2answers
359 views

Many producer, single consumer with python/mod_wsgi

I have a Pylons web application served by Apache (mod_wsgi, prefork). Because of Apache, there are multiple separate processes running my application code concurrently. Some of the non-critical tasks ...
1
vote
2answers
137 views

On MacOSX, in C++, how to do interprocess communication over shared memory without spin lock?

I have two processes: Producer and Consumer they have a commonly mmaped shared region of memory Memory Now, Producer writes stuff to Memory. Consumer reads stuff from Memory. I would prefer ...
1
vote
2answers
888 views

ActiveMQ publisher and subscriber in multiple languanges(C++ Java)

I want to use ActiveMQ as a message broker communicating between a C++ component and a Java component in two process. Eg. C++ component is the publisher and the Java component is the subscriber(there ...
0
votes
1answer
28 views

Signalling a producer task from a consumer task when working with a BlockingCollection

I have a pretty basic application that uses a Producer task and a Consumer task to work with files. It is based off the example here http://msdn.microsoft.com/en-us/library/dd267312.aspx The basics ...
0
votes
1answer
52 views

Producer / Consumer with Bounded Buffer, multiple producers/consumers with Semaphores

I'm a bit stuck on the multiple consumer/producer problem. It appears in my lecture notes, but I simply cannot understand why the single consumer/producer approach won't work. The typical approach ...
0
votes
0answers
39 views

Produce Consumer pattern using Monitor or Semaphore

I'm reading Stephen Toub's Patterns of Parallel Programming. On page 53 he describes some Producer/Consumer patterns One below using semaphores class BlockingQueue<T> { private ...
0
votes
3answers
76 views

Consumer-producer model with OpenMP

I am trying to implement a single-producer-multiple-consumer model using OpenMP (I know that I could as well go for boost threads which might be better suited). Here is my code, which is fairly ...
0
votes
0answers
25 views

How to identify Flex BlazeDS AMF Producer server-side and client-side

I am using BlazeDS and AMF to send messages back and forth between Flex and Java. How can I identify the Flex producer both Flex-side and Java-side?
0
votes
0answers
97 views

Producer/consumer with circular buffer

could please someone tell me what I am doing wrong here? It doesnt execute get_buffer at all. void put_buffer(variables *vars) { buffer_item item; item = rand(); while( (in + 1) ...
0
votes
1answer
29 views

How do I close a loading screen right when the other thread is finished in Python using Tk?

I have a Python GUI that uses Tkinter. I have to SSH into another place to get data. I start a new thread to do this so that the GUI doesn't hang. During this time, I want to pop up a screen that lets ...
0
votes
1answer
78 views

Event-driven thread creation

I have been trying all kinds of solution to the following problem; to no avail. I have a large number of (python) modules/scripts and a distinguished script, K.py . When K.py is executed, it ...
0
votes
1answer
46 views

Tracking statuses of instances of objects on different threads?

I am writing an image board scraper in my free time to teach me mostly about threading. Currently I am using a producer/consumer type pattern to facilitate this effort. However, I am running into a ...
0
votes
2answers
2k views

Fast and Best Producer/consumer queue technique BlockingCollection vs concurrent Queue

Im using Generic.Queue in C# 3.0 and Monitor.Enter,wait,exit for wait before consuming the queue (wait for the element to be enqueued). Now im moving to C# 4. Can anyone suggest me which one is fast ...
0
votes
1answer
112 views

WSRP URL rewriting in JBoss Portal 2.7.2

Does anyone know if WSRP URL rewriting is supported in Jboss Portal 2.7.2 when acting as a producer? Currently, the URL rewriting is done on the consumer, which has to parse the mark-up (returned ...
0
votes
3answers
460 views

ActiveMQ single consumer multiple producers

can anybody point out a reference on how to implement a single consumer multiple producer in activemq Or could give a very simple implementation this will be very helpful. tnx
0
votes
2answers
168 views

Unknown error in Producer/Consumer program, believe it to be an infinite loop

I am writing a program that is solving the producer/consumer problem, specifically the bounded-buffer version(i believe they mean the same thing). The producer will be generating x number of random ...