redis: add redis client and broker
parent
3a3871652e
commit
ca32ecec3c
@ -0,0 +1,31 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/go-redis/redis/v7"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
client := redis.NewClient(&redis.Options{
|
||||||
|
Addr: "10.1.3.100:6379",
|
||||||
|
Password: "",
|
||||||
|
DB: 0,
|
||||||
|
})
|
||||||
|
|
||||||
|
_, err := client.Ping().Result()
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
channel := client.Subscribe("qq")
|
||||||
|
_, err = channel.Receive()
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
for msg := range channel.Channel() {
|
||||||
|
if msg.Channel != "qq" {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,35 @@
|
|||||||
|
package socket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/go-redis/redis/v7"
|
||||||
|
)
|
||||||
|
|
||||||
|
var client *redis.Client
|
||||||
|
var channel *redis.PubSub
|
||||||
|
|
||||||
|
type Message struct {
|
||||||
|
ID int
|
||||||
|
Name string
|
||||||
|
Email string
|
||||||
|
}
|
||||||
|
|
||||||
|
func StartRedisServer(addr string) {
|
||||||
|
client = redis.NewClient(&redis.Options{
|
||||||
|
Addr: addr,
|
||||||
|
})
|
||||||
|
|
||||||
|
_, err := client.Ping().Result()
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
channel = client.Subscribe("qq")
|
||||||
|
_, err = channel.Receive()
|
||||||
|
if err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func sendMessageToRedisChannel(msg Message) {
|
||||||
|
client.Publish("qq", msg)
|
||||||
|
}
|
Reference in New Issue