1
0
mirror of https://github.com/redis/go-redis.git synced 2025-08-08 23:42:06 +03:00

Add basic example how to use Redis Cluster. Unify comments.

This commit is contained in:
Vladimir Mihailenco
2015-05-23 16:35:30 +03:00
parent 1eb3e076ed
commit f6ef0fd342
3 changed files with 16 additions and 4 deletions

View File

@@ -26,8 +26,8 @@ type ClusterClient struct {
reloading uint32
}
// NewClusterClient initializes a new cluster-aware client using given options.
// A list of seed addresses must be provided.
// NewClusterClient returns a new Redis Cluster client as described in
// http://redis.io/topics/cluster-spec.
func NewClusterClient(opt *ClusterOptions) *ClusterClient {
client := &ClusterClient{
addrs: opt.Addrs,