gorush/queue/nsq/README.md

30 lines
308 B
Markdown
Raw Normal View History

# NSQ
A realtime distributed messaging platform
## Setup
start the NSQ lookupd
```sh
nsqlookupd
```
start the NSQ server
```sh
nsqd --lookupd-tcp-address=localhost:4160
```
start the NSQ admin dashboard
```sh
nsqadmin --lookupd-http-address localhost:4161
```
## Testing
```sh
go test -v ./...
```