Hacker News new | ask | show | jobs
by eao197 2767 days ago
JIF: there is more than just CAF in C++ land [1]

There are at least QP/C++ [2] and SObjectizer [3].

All three frameworks are used in production, especially QP/C++.

Error handling in C++ actor frameworks is a different topic than such handling in Erlang or other safe language. Because if you do something like division by 0 or deference of null pointer in your C++ actor you will have a different result: in the best case the whole your application will crush, not just one actor.

[1] https://www.slideshare.net/YauheniAkhotnikau/actor-model-and... [2] https://www.state-machine.com/qpcpp/ [3] https://stiffstream.com/en/products/sobjectizer.html

1 comments

Thanks! Those are good resources