内容简介:基于码云:Github:
基于 gomodule/redigo
的二次封装,提供 stand-alone
sentinel
cluster
3种部署模式下的统一接口,使得更换 redis
部署模式对业务透明
项目地址
码云: https://gitee.com/letsfire/re...
Github: https://github.com/letsfire/r...
开发进度
Mode部署模式 | 代码完成度 | 测试完成度 | 依赖包 |
---|---|---|---|
alone 单例,Twemproxy,Codis | 100% | 100% | |
sentinel 哨兵模式 | 100% | 100% | FZambia/sentinel |
cluster 集群模式 | 100% | 100% | mna/redisc |
方法列表
订阅连接 type SubFunc func(c redis.PubSubConn) (err error)
普通连接 type ExecFunc func(c redis.Conn) (res interface{}, err error)
- Sub(fn SubFunc) (err error)
- Exec(fn ExecFunc) (interface{}, error)
- Int(fn ExecFunc) (int, error)
- Ints(fn ExecFunc) ([]int, error)
- IntMap(fn ExecFunc) (map[string]int, error)
- Int64(fn ExecFunc) (int64, error)
- Int64s(fn ExecFunc) ([]int64, error)
- Int64Map(fn ExecFunc) (map[string]int64, error)
- Uint64(fn ExecFunc) (uint64, error)
- Bool(fn ExecFunc) (bool, error)
- String(fn ExecFunc) (string, error)
- StringMap(fn ExecFunc) (map[string]string, error)
- Strings(fn ExecFunc) ([]string, error)
- Bytes(fn ExecFunc) ([]byte, error)
- ByteSlices(fn ExecFunc) ([][]byte, error)
- Positions(fn ExecFunc) ([]*[2]float64, error)
- Float64(fn ExecFunc) (float64, error)
- Float64s(fn ExecFunc) ([]float64, error)
- Values(fn ExecFunc) ([]interface{}, error)
Alone示例
var echoStr = "hello world" var aloneMode = alone.New( alone.Addr("192.168.0.110:6379"), alone.PoolOpts( mode.MaxActive(0), // 最大连接数,默认0无限制 mode.MaxIdle(0), // 最多保持空闲连接数,默认2*runtime.GOMAXPROCS(0) mode.Wait(false), // 连接耗尽时是否等待,默认false mode.IdleTimeout(0), // 空闲连接超时时间,默认0不超时 mode.MaxConnLifetime(0), // 连接的生命周期,默认0不失效 mode.TestOnBorrow(nil), // 空间连接取出后检测是否健康,默认nil ), alone.DialOpts( redis.DialReadTimeout(time.Second), // 读取超时,默认time.Second redis.DialWriteTimeout(time.Second), // 写入超时,默认time.Second redis.DialConnectTimeout(time.Second), // 连接超时,默认500*time.Millisecond redis.DialPassword(""), // 鉴权密码,默认空 redis.DialDatabase(0), // 数据库号,默认0 redis.DialKeepAlive(time.Minute*5), // 默认5*time.Minute redis.DialNetDial(nil), // 自定义dial,默认nil redis.DialUseTLS(false), // 是否用TLS,默认false redis.DialTLSSkipVerify(false), // 服务器证书校验,默认false redis.DialTLSConfig(nil), // 默认nil,详见tls.Config ), ) var instance = redigo.New(aloneMode) res, err := instance.String(func(c redis.Conn) (res interface{}, err error) { return c.Do("ECHO", echoStr) }) if err != nil { log.Fatal(err) } else if res != echoStr { log.Fatalf("unexpected result, expect = %s, but = %s", echoStr, res) }
Sentinel示例
var echoStr = "hello world" var sentinelMode = sentinel.New( sentinel.Addrs([]string{"192.168.0.110:26379"}), sentinel.PoolOpts( mode.MaxActive(0), // 最大连接数,默认0无限制 mode.MaxIdle(0), // 最多保持空闲连接数,默认2*runtime.GOMAXPROCS(0) mode.Wait(false), // 连接耗尽时是否等待,默认false mode.IdleTimeout(0), // 空闲连接超时时间,默认0不超时 mode.MaxConnLifetime(0), // 连接的生命周期,默认0不失效 mode.TestOnBorrow(nil), // 空间连接取出后检测是否健康,默认nil ), sentinel.DialOpts( redis.DialReadTimeout(time.Second), // 读取超时,默认time.Second redis.DialWriteTimeout(time.Second), // 写入超时,默认time.Second redis.DialConnectTimeout(time.Second), // 连接超时,默认500*time.Millisecond redis.DialPassword(""), // 鉴权密码,默认空 redis.DialDatabase(0), // 数据库号,默认0 redis.DialKeepAlive(time.Minute*5), // 默认5*time.Minute redis.DialNetDial(nil), // 自定义dial,默认nil redis.DialUseTLS(false), // 是否用TLS,默认false redis.DialTLSSkipVerify(false), // 服务器证书校验,默认false redis.DialTLSConfig(nil), // 默认nil,详见tls.Config ), // 连接哨兵配置,用法于sentinel.DialOpts()一致 // 默认未配置的情况则直接使用sentinel.DialOpts()的配置 // sentinel.SentinelDialOpts() ) var instance = redigo.New(sentinelMode) res, err := instance.String(func(c redis.Conn) (res interface{}, err error) { return c.Do("ECHO", echoStr) }) if err != nil { log.Fatal(err) } else if res != echoStr { log.Fatalf("unexpected result, expect = %s, but = %s", echoStr, res) }
Cluster示例
var echoStr = "hello world" var clusterMode = cluster.New( cluster.Nodes([]string{ "192.168.0.110:30001", "192.168.0.110:30002", "192.168.0.110:30003", "192.168.0.110:30004", "192.168.0.110:30005", "192.168.0.110:30006", }), cluster.PoolOpts( mode.MaxActive(0), // 最大连接数,默认0无限制 mode.MaxIdle(0), // 最多保持空闲连接数,默认2*runtime.GOMAXPROCS(0) mode.Wait(false), // 连接耗尽时是否等待,默认false mode.IdleTimeout(0), // 空闲连接超时时间,默认0不超时 mode.MaxConnLifetime(0), // 连接的生命周期,默认0不失效 mode.TestOnBorrow(nil), // 空间连接取出后检测是否健康,默认nil ), cluster.DialOpts( redis.DialReadTimeout(time.Second), // 读取超时,默认time.Second redis.DialWriteTimeout(time.Second), // 写入超时,默认time.Second redis.DialConnectTimeout(time.Second), // 连接超时,默认500*time.Millisecond redis.DialPassword(""), // 鉴权密码,默认空 redis.DialDatabase(0), // 数据库号,默认0 redis.DialKeepAlive(time.Minute*5), // 默认5*time.Minute redis.DialNetDial(nil), // 自定义dial,默认nil redis.DialUseTLS(false), // 是否用TLS,默认false redis.DialTLSSkipVerify(false), // 服务器证书校验,默认false redis.DialTLSConfig(nil), // 默认nil,详见tls.Config ), ) var instance = redigo.New(clusterMode) res, err := instance.String(func(c redis.Conn) (res interface{}, err error) { return c.Do("ECHO", echoStr) }) if err != nil { log.Fatal(err) } else if res != echoStr { log.Fatalf("unexpected result, expect = %s, but = %s", echoStr, res) }
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- php操作redis集群哨兵模式
- Redis集群主从复制及哨兵模式实现
- Spring Boot 2 整合 Redis 哨兵集群,实现消息队列场景
- Window下搭建Redis高可用集群-哨兵模式(Redis-Sentinel)
- 史上最全Redis面试49题(含答案):哨兵+复制+事务+集群+持久化等
- Redis 哨兵节点之间相互自动发现机制(自动重写哨兵节点的配置文件)
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Markdown 在线编辑器
Markdown 在线编辑器
RGB CMYK 转换工具
RGB CMYK 互转工具