Registry / networking / buraksezer-connpool

buraksezer-connpool

JSON →
library0.6.0gogounverified

Implements a pool of net.Conn interfaces to manage and reuse network connections.

go get github.com/buraksezer/connpool
INSTALL
IMPORT
SIG · BURAKSEZER-CONNPOO
B
buraksezer-connpool
networkinggov0.6.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

connpool
✓ github.com/buraksezer/connpool

Creates a connection pool and acquires a connection.

package main import ( "github.com/buraksezer/connpool" "net" ) func main() { pool, _ := connpool.New(connpool.Config{ Dial: func() (net.Conn, error) { return net.Dial("tcp", "example.com:80") }, }) conn, _ := pool.Get() defer conn.Close() }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.6.0latest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
29 hits · last 30 days
node
26
Amazon
1
OpenAI (training)
1
Resources
buraksezer-connpool — go get buraksezer-connpool · libregistry