NATS-Go客户
客户端。
安装
# Go client
go get github.com/nats-io/nats.go/
# Server
go get github.com/nats-io/nats-server
使用或转换为Go模块支持时:
# Go client latest or explicit version
go get github.com/nats-io/nats.go/@latest
go get github.com/nats-io/nats.go/@v1.10.0
# For latest NATS Server, add /v2 at the end
go get github.com/nats-io/nats-server/v2
# NATS Server v1 is installed otherwise
# go get github.com/nats-io/nats-server
基本用法
import nats "github.com/nats-io/nats.go"
// Connect to a server
nc , _ := na
1