|
@@ -1,6 +1,7 @@
|
|
|
package redis
|
|
|
|
|
|
import (
|
|
|
+ "fmt"
|
|
|
"github.com/gomodule/redigo/redis"
|
|
|
"github.com/spf13/viper"
|
|
|
"strings"
|
|
@@ -70,3 +71,56 @@ func (a *RedigoAdapter) Do(commandName string, args ...interface{}) (interface{}
|
|
|
return conn.Do(commandName, args...)
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+// 返回命令管道操作对象
|
|
|
+func (a *RedigoAdapter) Pipeline() IRedisPipeline {
|
|
|
+ return &RedigoPipeline{
|
|
|
+ conn: a.pool.Get(),
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// Redigo命令管道操作对象
|
|
|
+type RedigoPipeline struct {
|
|
|
+ conn redis.Conn
|
|
|
+ commands []*redisCmd
|
|
|
+}
|
|
|
+
|
|
|
+// 向管道中添加命令
|
|
|
+func (p *RedigoPipeline) Send(commandName string, args ...interface{}) IRedisPipeline {
|
|
|
+ p.commands = append(p.commands, &redisCmd{commandName: commandName, args: args})
|
|
|
+ return p
|
|
|
+}
|
|
|
+
|
|
|
+// 执行管道中的命令
|
|
|
+func (p *RedigoPipeline) Execute() ([]interface{}, error) {
|
|
|
+ defer func(conn redis.Conn) {
|
|
|
+ _ = conn.Close()
|
|
|
+ }(p.conn)
|
|
|
+
|
|
|
+ if nil == p.commands || len(p.commands) == 0 {
|
|
|
+ return nil, fmt.Errorf("no commands in pipeline")
|
|
|
+ }
|
|
|
+
|
|
|
+ var err error
|
|
|
+ for i := 0; i < len(p.commands); i++ {
|
|
|
+ cmd := p.commands[i]
|
|
|
+ err = p.conn.Send(cmd.commandName, cmd.args...)
|
|
|
+ if nil != err {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ }
|
|
|
+ err = p.conn.Flush()
|
|
|
+ if nil != err {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+
|
|
|
+ var replies []interface{}
|
|
|
+ for i := 0; i < len(p.commands); i++ {
|
|
|
+ reply, err := p.conn.Receive()
|
|
|
+ if nil != err {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ replies = append(replies, reply)
|
|
|
+ }
|
|
|
+ return replies, nil
|
|
|
+}
|