Hacker News new | ask | show | jobs
by tayo42 1432 days ago
How are people writing event loop based webservices with rust then if they're not using async?
1 comments

(I don't think async is bad.)

Some folks just use threads, no event loop.

Event loops are also there without async, you could just write against mio or whatever else you choose directly.