DEV Community

Discussion on: Explained: How does async work in Rust?

Collapse
 
michall profile image
Michal Podhradsky

Thanks for a nice article - just one note when you talk about async concept On a software level, this was achieved through multi-threading -> in Node.js it is handled by Event loop on single thread rather than multi-threading.. Anyway it is great that tokio is going the same path Node.js went - definitely looking forward for using Rust on scalable server stuff in the future