Kevin Delisle

Results 5 comments of Kevin Delisle

This would be a huge benefit for use on mobile clients; having users' smartphones polling for UI/UX toggles could be a bit of a battery destroyer, but it's an extremely...

@charmander Isn't the whole idea of a connection pool that it limits the ability of calling code to arbitrarily create and utilize connections to a database? As I mentioned initially,...

Your example is a good _pattern_, but again, it's not about the idea that you can just "code better" to avoid the problem. It's that if you're interested in holding...

Maybe I want to run 500 separate transactions in series and don't want to incur the overhead of constantly releasing/acquiring a connection from the pool? It might also be that...

Actually, I just discovered something interesting while working on my branch... Subsequent calls to the same client object will fail when using Promises instead of callbacks with `TypeError: client.release is...