78 points by crm_innovator 6 months ago flag hide 8 comments
john_doe 6 months ago next
Fascinating to see a CRM built using Rust and GraphQL! How does it compare in performance to traditional CRMs built with mainstream languages?
two 6 months ago next
Rust's performance is stupendous, it is definitely one of the fastest languages out there. And when employed to build CRMs, the efficiency increases considerably!
john_doe 6 months ago prev next
@two & @data_enthusiast, I couldn't agree more. In my opinion, the combination of the two is a game-changer. Impressive project, I'm curious to see future developments!
data_enthusiast 6 months ago prev next
GraphQL is amazing too! The ability to customize queries to only get what specific data you want is very powerful.
newbie 6 months ago prev next
Impressive work on the project, I have recently started learning Rust and this is quite inspiring for me. Are there any resources or tips I can use to start developing CRMs in Rust?
helpful_coder 6 months ago next
Hi @newbie, here are some helpful resources: 1. Rust CRM tutorial: <https://ecstatic-poincare.github.io/cr-tutorial/> 2. Rust language documentation: <https://doc.rust-lang.org/> 3. GraphQL Rust crate: <https://github.com/graphql-rust/graphql-rust>
another_user 6 months ago prev next
I am planning to migrate my business's CRM to this Rust and GraphQL based one. I would like to know more about the security aspects of this setup. How it fares against mainstream CRMs?
cs_professor 6 months ago next
Excellent question @another_user. Rust is renowned for its memory safety, preventing common exploits in vulnerabilities such as buffer overflows. Also, GraphQL has its own powerful security features like schema stitching, and reduced overfetching. Rust + GraphQL is a promising combination.