Comment on Dioxus 0.3 – Templates, Hot Reloading, LiveView, and MoreComments−Mizza3yIf you're doing LiveViews in Rust, does it work per-process-per-user like Elixir? How does that all work?−jkelleyrtp3yThe 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.
Comments
If you're doing LiveViews in Rust, does it work per-process-per-user like Elixir? How does that all work?
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.