pool icon indicating copy to clipboard operation
pool copied to clipboard

Generic (connection) pools for Crystal

Results 2 pool issues
Sort by recently updated
recently updated
newest added

The pool has no way to know that a connection failed and must be either resetted or simply removed from the pool. Yet, we could at least provide means to...

enhancement

While investigating an issue I found out that the following stress test will eventually hang (without MT): ```crystal require "pool/connection" class Foo end pool = ConnectionPool(Foo).new(capacity: 5, timeout: 50.milliseconds) {...

bug