adamchalmers / blog

1 stars 2 forks source link

Why use Rust on the backend? #10

Open utterances-bot opened 1 year ago

utterances-bot commented 1 year ago

Why use Rust on the backend?

I don't care about avoiding GC or about maximum performance. I treat Rust as a high level language.

https://blog.adamchalmers.com/why-rust-on-backend/

rickyraz commented 1 year ago

Great insight, thanks for sharing your knowledge; it is highly helpful to a novice like me.

Shinoa-Fores commented 1 year ago

Why use Rust on the backend?

Because it's shit, and shit generally comes from back ends.

nsengupta commented 1 year ago

Quite useful piece of information, for a RUst newbie like me. Thanks for sharing.

What toolset did you use to measure the performance? I am just curious.

arhuman commented 1 year ago

Thank you for this nuanced and reasoned opinion. Any hint to resources/ways to improve rust knowledge (especially useful) for go dev?

sanfilippopablo commented 1 year ago

Just a note on databases. Sqlx type checks your SQL queries at build time by testing each query against a real test database, so if you don't want the pain of an orm and prefer manually crafted SQL queries, you don't have to give up type safety. It also has a migration system.

jatinsehrwt commented 7 months ago

Thank you for the article, it really helps someone thinking of using new stuff