hikari-cp icon indicating copy to clipboard operation
hikari-cp copied to clipboard

A Clojure wrapper to HikariCP JDBC connection pool

Results 5 hikari-cp issues
Sort by recently updated
recently updated
newest added

Hi! Nice library, I think I wasn't aware of it (had used raw Hikari a few times). Giving it an Eastwood pass over it, I noticed it has many reflection...

For now configuration options are validated with [s/valid?](https://github.com/tomekw/hikari-cp/blob/master/src/hikari_cp/core.clj#L164). The problem is that quite [often](https://12factor.net/config) DB connection options are coming from the environment variables that are always strings. That breaks validation...

Documented at https://github.com/brettwooldridge/HikariCP#infrequently-used

This is useful to check the state of the connection pool when it's wrapped in a Component (or similar) to avoid issues when trying to close a pool that's already...