Hi Igor, thanks for sharing! On first (cursory) sight it looks like your mailbox might cause missed wake-ups because head and tail are read by the enqueueing thread without synchronization (i.e. disruptor cursor is moved but updates to head and tail have not been published; this might be mitigated by clever ordering of effects, but my spidey senses make me uneasy on this one).
Regards, Roland 1 jan 2014 kl. 20:04 skrev Igor Konev <[email protected]>: > If somebody is still interested, I've implemented a bounded mailbox using > Disruptor and obtained a throughput gain of about 50% over the standard > bounded mailbox. You can find the source code here > https://github.com/yngui/akka-disruptor. > > -- >>>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>>> Check the FAQ: http://akka.io/faq/ >>>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user > --- > You received this message because you are subscribed to the Google Groups > "Akka User List" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/akka-user. > For more options, visit https://groups.google.com/groups/opt_out. Dr. Roland Kuhn Akka Tech Lead Typesafe – Reactive apps on the JVM. twitter: @rolandkuhn -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: http://akka.io/faq/ >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/groups/opt_out.
