Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 Disruptor pattern.

Is anyone aware of a port of the Disruptor pattern to C++, either finished or in beta?

Update

Apparently others are calling for a C++ version of the Disruptor pattern.

share|improve this question

2 Answers

up vote 7 down vote accepted

Yes, there is already a functional C++ port. See http://www.2robots.com/2011/08/13/a-c-disruptor/.

share|improve this answer
Project's page: code.google.com/p/disruptor-cpp – ulidtko Aug 15 '11 at 14:51
Project's code moved to github.com/fsaintjacques/disruptor-- – Daniel YC Lin Jul 10 '12 at 8:27

From the above link ("others are calling.."), comments:

Thread for discussing upcoming C++ port of the Disruptor pattern: http://groups.google.com/group/lmax-disruptor/browse_thread/thread/4a47a0a9b5837ca2

Performance of C++ version of Disruptor: approx. 22 million messages per second, with batching this reaches up to 100 million messages per second, see: http://mechanical-sympathy.blogspot.com/2011/08/inter-thread-latency.html

share|improve this answer
Is it possible to write a port in c#? Asking this question here: stackoverflow.com/questions/8097372/… – Big Endian Nov 11 '11 at 17:03
1  
The C# port is available at code.google.com/p/disruptor-net – CadentOrange Nov 16 '11 at 12:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.