├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── Makefile ├── README.md ├── shard.lock ├── shard.yml ├── src ├── connection.cr └── pool.cr └── test ├── connection_pool_test.cr ├── pool_test.cr └── test_helper.cr /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysbaddaden/pool/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .crystal 2 | .shards 3 | lib 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysbaddaden/pool/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysbaddaden/pool/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysbaddaden/pool/HEAD/README.md -------------------------------------------------------------------------------- /shard.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysbaddaden/pool/HEAD/shard.lock -------------------------------------------------------------------------------- /shard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysbaddaden/pool/HEAD/shard.yml -------------------------------------------------------------------------------- /src/connection.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysbaddaden/pool/HEAD/src/connection.cr -------------------------------------------------------------------------------- /src/pool.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysbaddaden/pool/HEAD/src/pool.cr -------------------------------------------------------------------------------- /test/connection_pool_test.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysbaddaden/pool/HEAD/test/connection_pool_test.cr -------------------------------------------------------------------------------- /test/pool_test.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysbaddaden/pool/HEAD/test/pool_test.cr -------------------------------------------------------------------------------- /test/test_helper.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysbaddaden/pool/HEAD/test/test_helper.cr --------------------------------------------------------------------------------