20 added a generic connection pool to this package. An implementation detail of this connection pool is that waiters are served FILO. This shouldn't cause any correctness problems, but ideally waiters would be served FIFO. A CircularBuffer may help do this without any performance loss.
20 added a generic connection pool to this package. An implementation detail of this connection pool is that waiters are served FILO. This shouldn't cause any correctness problems, but ideally waiters would be served FIFO. A
CircularBuffer
may help do this without any performance loss.