--
>>>>>>>>>> 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 akka-user+...@googlegroups.com.
To post to this group, send email to akka...@googlegroups.com.
Visit this group at http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/groups/opt_out.
Hi, I've changed according to your recommendations, but the results is the same.The code:final Config config = ConfigFactory.parseString("akka {\n" +" actor {\n" +" default-dispatcher {\n" +" throughput = 1024\n" +" }\n" +" }\n" +" default-mailbox { \n" +" mailbox-type = \"akka.dispatch.SingleConsumerOnlyUnboundedMailbox\"\n" +" } \n" +"}");
Thank you all for help.I've done the configuration as recommended, and the time is the same.Now I'm using the following configuration:akka {actor {default-dispatcher {throughput = 1024fork-join-executor {parallelism-max = 4}}default-mailbox {mailbox-type = "akka.dispatch.UnboundedMailbox"
Thanks Alec, I am _very_ impressed by that considering that there are quite more logic involved in the Akka codepath.
There's clearly no reason to roll your own.
Cheers, V