-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create a performance benchmark for FSM #2560
Labels
Milestone
Comments
Aaronontheweb
added a commit
to Aaronontheweb/akka.net
that referenced
this issue
Oct 5, 2022
4 tasks
Aaronontheweb
added a commit
that referenced
this issue
Oct 5, 2022
Aaronontheweb
added a commit
that referenced
this issue
Oct 7, 2022
* close #2560 - added performance benchmarks for FSM * Improved FSM memory consumption * Made `Event` a `readonly struct` * Eliminated unnecessary `List<object>` allocations * Cleaned up XML-DOC comments * don't return new `State<TState, TData>` during `Stay()` * API approvals * fixed `State<TS.,TD>` errors
Aaronontheweb
added a commit
to Aaronontheweb/akka.net
that referenced
this issue
Oct 8, 2022
Aaronontheweb
added a commit
to Aaronontheweb/akka.net
that referenced
this issue
Oct 8, 2022
* close akkadotnet#2560 - added performance benchmarks for FSM * Improved FSM memory consumption * Made `Event` a `readonly struct` * Eliminated unnecessary `List<object>` allocations * Cleaned up XML-DOC comments * don't return new `State<TState, TData>` during `Stay()` * API approvals * fixed `State<TS.,TD>` errors
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Akka.NET uses FSM actor in a many places, like remoting, persistence, cluster singleton. It is like one of the most important primitives. We should know how fast it is, and how many allocations it produces.
The benchmark should test the actor throughput in a combination with different state changes
https://gist.github.com/alexvaluyskiy/6824137919369061fec5fe2882148fa7
The text was updated successfully, but these errors were encountered: