The `github.com/garyburd/redigo/redis.Pool` package is a part of the Go programming language and serves as a connection pool for Redis, an in-memory data structure store. It provides a high-level abstraction for managing multiple connections to a Redis server. By utilizing pooling, the package allows for efficient reuse of connections, reducing the overhead of establishing new connections for each Redis operation. Overall, this package simplifies the process of managing Redis connections and provides improved performance in Go applications that interact with Redis.
Golang Pool - 30 examples found. These are the top rated real world Golang examples of github.com/garyburd/redigo/redis.Pool extracted from open source projects. You can rate examples to help us improve the quality of examples.