Hacker News new | ask | show | jobs
by fafhrd91 2942 days ago
first, you need to define what is crash in rust means. panic or error. in general case you can not recover from panic. in case of error, type system prevents unhanded errors in actors. you can restart actor, but that is controlled by developer action.
1 comments

A panic in an actor will take down the whole (rust) server?
one thread in best case. But process may die. Depends on panic