▲ | ldng 4 days ago | |||||||||||||
I would love a Django clone in Rust that does NOT do async. Dead simple to debug instead of performance oriented. | ||||||||||||||
▲ | m4tx 4 days ago | parent | next [-] | |||||||||||||
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! | ||||||||||||||
▲ | the__alchemist 12 hours ago | parent | prev | next [-] | |||||||||||||
This is exactly what I'm looking for. Rust is my favorite languages in many domains; I use Python and Django for web backends due to the immature rust ecosystem there. I am not a fan of Async for various reasons, so: Batteries-included web backend + rust + not-Async would be amazing! | ||||||||||||||
▲ | ygouzerh 4 days ago | parent | prev | next [-] | |||||||||||||
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 4 days ago | parent | prev [-] | |||||||||||||
No threading either. Just a single thread serving one client at a time. |