13 Comments
Dec 26, 2023Liked by Neo Kim

Looks like Erlang/Elixir’s OTP model.

Expand full comment

or Golang goroutines

Expand full comment

That was my first thought as well!

Expand full comment

Actor model is rarely used, we use it in Scala in some of our projects. I think its underrated.

Expand full comment
author

good to know, Junaid. Thanks

Expand full comment

How many actors were used per virtual machine and what was a single VM resource configuration?

Expand full comment

Why are you writing one sentence per paragraph? It’s so annoying to read this article.

Expand full comment
author

I see, thanks for the feedback.

I'll try to improve my writing skills.

Expand full comment

Don't listen to him, I think it looks better with the shorter text bodies

Expand full comment

Actors are independent from each other, but transactions might not. How actors are handling situations when they need to communicate between each other?

Expand full comment
Dec 26, 2023Liked by Neo Kim

Typically actors do processing and then hand the resulting message off to another actor. It’s just another message, same model.

Expand full comment

Isn't it kind of same as producer consumer model ?

Expand full comment

How many actors were used per virtual machine and what was a single VM resource configuration?

Expand full comment