Files
redis-go/interface/redis/client.go
2021-05-09 18:37:29 +08:00

13 lines
254 B
Go

package redis
type Connection interface {
Write([]byte) error
SetPassword(string)
GetPassword() string
// client should keep its subscribing channels
Subscribe(channel string)
UnSubscribe(channel string)
SubsCount() int
GetChannels() []string
}