Is Lambda free?
Generous free tier: 1 million requests and 400,000 GB-seconds per month forever. Many small applications run entirely within free tier.
What is AWS Lambda?
Lambda is AWS's serverless compute service. Run code without managing servers. Pay only for compute time used. Scales automatically.
Lambda vs EC2?
Lambda is serverless with no server management. EC2 gives full control but requires management. Lambda for events and APIs; EC2 for long-running workloads.
What languages does Lambda support?
Node.js, Python, Java, C#, Go, Ruby, and custom runtimes. Node.js and Python are most popular. Can bring any language via custom runtime.
What are Lambda cold starts?
Cold start is delay when Lambda initializes a new container. Can be 100ms to several seconds depending on runtime. Keep functions warm for latency-sensitive apps.