When should one use the Actor model?
Given some concurrency problem, what would you look for to decide whether to use actors or not? First I would look to define the problem… is the primary motivation a speedup of a nested for loop or recursion? If so a simple task based approach or parallel loop approach will likely work well for you … Read more