I am learning about Akka.net and have heard about service fabric from Azure. As far as I know, they both are used for building microservices.
Apart from the difference in the scaling model, what else can be the difference between Akka.net and Azure Service fabric.
I see that the conclusion mentioned in the following blog gives hint to using Akka.net with persistent storage from Azure.
Can the real-time implementation developer's share their experiences in these technologies.
I find many use cases that can be solved, but one simple one would be a user import process, which typically contains the following steps,
- Create user,
- Add roles to user
- Send welcome email to the new user
- Manage user based metering for the company to which the user is being added to.
I see that all the above steps qualified to contain an actor on its own to perform the activities. Kindly comment on the approach that I have understood.