Files
LearnGO/go/pkg/mod/github.com/jackc/puddle@v1.3.0/doc.go
T
2024-09-19 21:38:24 -04:00

12 lines
507 B
Go

// Package puddle is a generic resource pool.
/*
Puddle is a tiny generic resource pool library for Go that uses the standard
context library to signal cancellation of acquires. It is designed to contain
the minimum functionality a resource pool needs that cannot be implemented
without concurrency concerns. For example, a database connection pool may use
puddle internally and implement health checks and keep-alive behavior without
needing to implement any concurrent code of its own.
*/
package puddle