[akka-user] Re: akka actor - performance issue

2015-07-15 Thread flydaf
I have got 4 cores/threads machine. I am running one experiment in one actor. Requirement for program is to run as much experiments as it's possible concurrently.Number of experiments must be parametrised. -- Read the docs: http://akka.io/docs/ Check the FAQ:

[akka-user] Re: akka actor - performance issue

2015-07-14 Thread flydaf
1. Mistake, not 8000k ms , should be 8k ms 2. Mensioned ~13% time difference in perf. time get bigger with growing number of CountingActors. -- Read the docs: http://akka.io/docs/ Check the FAQ: http://doc.akka.io/docs/akka/current/additional/faq.html Search the archives:

[akka-user] akka actor - performance issue

2015-07-14 Thread flydaf
Hi everyone! I working on some scala computing some game theory problem using Akka. Basically I've got three types involved : 1. ComputingActor - does the job, running 1 actor for 1 experiment 2. ResultsActor - collects results from computing actors and sends to JobScheduler when job's done 3.

[akka-user] Actors performance program

2015-04-27 Thread flydaf
Hi, I've got a program using actors for parallel computations. I'd like to know it's performance considering number of threads using during computations(and maybe optimize it). What tools would u suggest to check that?How to bite it? -- Read the docs: http://akka.io/docs/ Check the

[akka-user] Actors program performance

2015-04-27 Thread flydaf
Hi, I've got a program which uses actors(akka) for parallel computations. I'd like to know it's performance considering thread using (to know need of optimization). What tools are proper for it?Which would you recommend? -- Read the docs: http://akka.io/docs/ Check the FAQ:

[akka-user] Collecting messages from many actors in non-actor

2014-03-16 Thread flydaf
Hi, I am new in Akka. Here's situation. I am writing program which computes some math problem. 1 Experiment is computed by 1 EvaluationActor No. of experiments might be thousands,or hundreds of thousends, even more. Each EvaluationActor has child actor - ResultActor which collects stats from