logoalt Hacker News

mike_hearnyesterday at 4:21 PM1 replyview on HN

The issue is language ecosystems that don't use client side connection pooling because they're single threaded (node, Python). So scaling up the number of web server threads means scaling the number of Postgres processes, which are expensive.


Replies

LtWorftoday at 12:59 AM

Python has threads and connection pools work fine on async workers as well.