|
|
|
|
|
by gazzini
2479 days ago
|
|
This is huge for Lambda. It allows devs to create “serverless” apps [1], with relational databases, without 10+ second cold-start times. In the article, they measure it as 988ms. I have tried building an API using API Gateway <-> Lambda, but had to choose between using DynamoDB to store data (no-SQL, so challenging to query) or suffering unacceptably long response times whenever a request happens to cause a cold-start. Theoretically, this problem is now going away! [1] https://serverless-stack.com |
|
You could always have fast startup with Lambda + database outside the VPC.