Why does HikariCP recommend fixed size pool for better performance
I suggest you read this page and watch the attached video. The Oracle Performance Group demonstrates how an application with a pool of 96 connection easily handles 10,000 front-end users and 20,000 transactions per-second. PostgreSQL recommends a formula of: connections = ((core_count * 2) + effective_spindle_count) Where core_count is CPU cores, and effective_spindle_count is the … Read more