ldng
42 minutes ago
I would love a Django clone in Rust that does NOT do async. Dead simple to debug instead of performance oriented.
m4tx
16 minutes ago
That's actually a very good point. I was thinking a lot about whether to make async a requirement. Given that sync code is often easier to reason about and debug and Cot tries to be developer-friendly, I'm leaning towards "sync by default, async when you need to", but I'll need to explore this more. Thanks for this thought!
ygouzerh
20 minutes ago
I just had an issue yesterday in my company where a backend keeps crashing, because a function blocking the main thread, which means that the healthcheck endpoint was not responding... Async is definitely a needs
brink
31 minutes ago
No threading either. Just a single thread serving one client at a time.