Files
redis-go/cluster/pubsub.go
2021-05-05 21:04:27 +08:00

46 lines
1.4 KiB
Go

package cluster
import (
"github.com/hdt3213/godis/interface/redis"
"github.com/hdt3213/godis/lib/logger"
"github.com/hdt3213/godis/redis/reply"
)
const (
relayPublish = "_publish"
publish = "publish"
)
var (
publishRelayCmd = []byte(relayPublish)
publishCmd = []byte(publish)
)
// broadcast msg to all peers in cluster when receive publish command from client
func Publish(cluster *Cluster, c redis.Connection, args [][]byte) redis.Reply {
var count int64 = 0
results := cluster.Broadcast(c, args)
for _, val := range results {
if errReply, ok := val.(reply.ErrorReply); ok {
logger.Error("publish occurs error: " + errReply.Error())
} else if intReply, ok := val.(*reply.IntReply); ok {
count += intReply.Code
}
}
return reply.MakeIntReply(count)
}
// receive publish command from peer, just publish to local subscribing clients, do not relay to peers
func OnRelayedPublish(cluster *Cluster, c redis.Connection, args [][]byte) redis.Reply {
args[0] = publishCmd
return cluster.db.Exec(c, args) // let local db.hub handle publish
}
func Subscribe(cluster *Cluster, c redis.Connection, args [][]byte) redis.Reply {
return cluster.db.Exec(c, args) // let local db.hub handle subscribe
}
func UnSubscribe(cluster *Cluster, c redis.Connection, args [][]byte) redis.Reply {
return cluster.db.Exec(c, args) // let local db.hub handle subscribe
}