wspool - WebSocket Connection Pool
A Go library for services that talk to WebSocket APIs at high frequency, where a single connection bottlenecks under concurrent load but opening a new connection per request is too costly. wspool keeps a pool of reusable WebSocket connections and scales it dynamically with traffic. ...