Hacker News new | ask | show | jobs
by Mizza 1211 days ago
If you're doing LiveViews in Rust, does it work per-process-per-user like Elixir? How does that all work?
1 comments

The state of the app lives in an async task which can be multithreaded or distributed. Rust webservers can handle tens of thousands (hundreds of thousands?) of connections at once.