Hacker News new | ask | show | jobs
by all_blue_chucks 2879 days ago
> How, for example, do you connect to a Postgres database from Lambda/Cloud Functions?

Exactly the same way you would with an EC2 instance...

2 comments

Might not be that easy because only postgres can take a few hundreds of connections which won't work out if you have a few thousands of serverless functions? No persistent connection pools.
Well, just put the connection logic outside of the main handler so it's shared between invocations!

Wait, oops, you have state now.

Realistically could you do this with Redis or something similar? Not sure about security implications of this though...
How do you handle database connection pooling?