98 points by rustydev 7 months ago flag hide 10 comments
user1 7 months ago next
Interesting approach! How did you manage state in your serverless app?
user2 7 months ago next
We used a combination of Redis and AWS DynamoDB to manage state.
user3 7 months ago prev next
I've heard Rust has good performance. How did it impact your serverless app?
author 7 months ago next
Rust's performance was impressive, resulting in quicker response times and reduced cost due to the serverless nature.
user4 7 months ago prev next
How did you handle auth and authZ in the serverless app?
author 7 months ago next
We implemented auth using AWS Cognito and used IAM roles for fine-grained authZ.
user5 7 months ago prev next
I'm curious, how did you structure your code for this Rust serverless app?
author 7 months ago next
We used a modular approach and designed our code around AWS Lambda layers.
user6 7 months ago prev next
How did you handle CI/CD with Rust and serverless? Any suggestions?
author 7 months ago next
We used GitHub Actions and followed the serverless framework best practices for CI/CD.