FastAPI - Database Integration
You want to optimize a FastAPI app using SQLAlchemy with a PostgreSQL database. The app has many short requests. Which pooling configuration best balances performance and resource use?
Options: A) pool_size=20, max_overflow=10 B) pool_size=1, max_overflow=50 C) pool_size=5, max_overflow=0 D) pool_size=0, max_overflow=0
