Connection pools in Node.js with MariaDB

from blog AndyJarrett.com, | ↗ original
Photo by Alec Weir on Unsplash TL;DR: Find the GitHub project here: github.com/andyj/mariadb-connection-pool Why Use a Connection Pool? Database connection pooling critical for your web applications. Without a pool, every database query spins up a new connection which startes eating up your resources! A connection pool keeps a stash of open...