【Nsq 消息队列的使用】nsq 消息队列的使用: https://nsq.io/overview/quick...
下载 nsq https://nsq.io/deployment/ins...
- nsqlookupd
- nsqd --lookupd-tcp-address=127.0.0.1:4160
- nsqadmin --lookupd-http-address=127.0.0.1:4161
- 发送消息到消息队列中
curl -d "hello world" "http://127.0.0.1:4151/pub?topic=test" - 消息存储到磁盘
nsq_to_file --topic=test --output-dir=/tmp --lookupd-http-address=127.0.0.1:4161 - 再次发送消息到队列中
curl -d "hello world 2" "http://127.0.0.1:4151/pub?topic=test"
7.访问nsq 管理员界面
http://127.0.0.1:4171/