Intel® oneAPI Threading Building Blocks
Ask questions and share information about adding parallelism to your applications when using this threading library.

An idea from the Java world

RafSchietekat
Valued Contributor III
272 Views
Does anybody have an opinion about something called "Disruptor" (see http://code.google.com/p/disruptor/)? I've seen this before, and yesterday somebody brought it to my attention again, but I thought I'd first ask here if anybody else had evaluated it yet. I presume there's some overlap with a TBB pipeline?

(Added 2012-04-24) Maybe this has been mentioned before on the forum, maybe I'm just imagining, but it would probably be interesting to do a systematic survey. Does anyone have any such information?
0 Kudos
1 Reply
ksgokul
Beginner
272 Views
I went through the thread. I think there is a take away for TBB Queues. There are a lot of scenarios where we havemultiple producers and single consumer
If the queue is not empty, then the single consumer need not compete with the multiple producers. Say at a point in time, the consumer reads the queue length as 10, then the single consumer can be sure that nine consumptions can happen without any locks.
Similarly if the producer has multiple stuffs to enqueue, he can form a structure without contention, that can be enqueued.
Can we make any effort to incorporate these features?
Thanks,
Gokul.
0 Kudos
Reply