One Lambda or Many?
Explore the pros and cons of deploying your serverless application as a single AWS Lambda function versus multiple functions. Understand key platform constraints like data consistency, security boundaries, memory, CPU needs, and timing limits to effectively design scalable and maintainable Lambda deployments. Gain insight into strategies for aggregating or dividing code to optimize performance, security, and cost.
The common wisdom today seems to be that monolithic code is bad and that micro-services are good, but there ...