The disruptor-pattern tag has no wiki summary.
33
votes
3answers
6k views
How does LMAX's disruptor pattern work?
http://code.google.com/p/disruptor/
I am trying to understand the disruptor pattern. I have watched the infoq video and tried to read their paper. I understand there is a ring buffer involved, that ...
6
votes
2answers
964 views
LMAX's disruptor pattern: is there a port to C++?
There are open source Java and .NET versions of LMAX's Disruptor pattern, as described in the video LMAX - How to Do 100K TPS at Less than 1ms Latency. Here is more links to information on the ...
6
votes
1answer
750 views
How should one use Disruptor (Disruptor Pattern) to build real-world message systems?
As the RingBuffer up-front allocates objects of a given type, how can you use a single ring buffer to process messages of various different types?
You can't create new object instances to insert into ...
3
votes
2answers
168 views
Disruptor - EventHandlers not invoked
I'm playing around with the Disruptor framework, and am finding that my event handlers are not being invoked.
Here's my setup code:
private static final int BUFFER_SIZE = 1024 * 8;
private final ...
2
votes
1answer
107 views
The simplest and actual example code of LMAX Disruptor
I wish I can get the simplest possible example code, which will show how to use LMAX disruptor(http://code.google.com/p/disruptor/).
Unfortunately every piece of code is out of date. Does someone ...
2
votes
1answer
148 views
Can the LMAX Disruptor be ported to C#?
I know some people are working on a C++ port.
Is a C# port possible? In particular I'm thinking about the limitations around volatile fields being only 32-bit in C#. If that's the only problem, does ...
1
vote
1answer
150 views
Java : Use Disruptor or Not . .
Hy,
Currently I am developing a program that takes 2 values from an amq queue and performs a series of mathematical calculations on them. A topic has been created on the amq server to which my ...
1
vote
1answer
149 views
Java Future.get() doesn't return
From the code below or ValueMutationEventHandler, why can't I do future2.get(), wait for future2 to complete and then get the results ?
If I do future2.get(), it'll wait forever.
import ...
0
votes
2answers
68 views
Java: Disruptor: Should Disruptor be used only for POD datatypes?
Should Disruptor be used only for POD datatypes?
i mean should Disruptor<T> be used only for T taking values like byte[], int[], etc ?
my doubt is that if we use T which has Object references ...
0
votes
1answer
82 views
Disruptor.net Example
I am trying to learn how to use the Disruptor.net messaging framework and I can't find any practical examples. There are quite a few articles out there with pictures about how it works but I can't ...