# NATS NATS 是一個開源、輕量級、高性能的分佈式消息中間件,實現了高可伸縮性和優雅的 `Publish` / `Subscribe` 模型,使用 `Golang` 語言開發。NATS 的開發哲學認為高質量的 QoS 應該在客户端構建,故只建立了 `Request-Reply`,不提供 1. 持久化 2. 事務處理 3. 增強的交付模式 4. 企業級隊列。 ## 安裝 ```bash composer require hyperf/nats ``` ## 使用 ### 創建消費者 ``` php bin/hyperf.php gen:nats-consumer DemoConsumer ``` 如果設置了 `queue`,則相同的 `subject` 只會被一個 `queue` 消費。若不設置 `queue`,則每個消費者都會受到消息。 ```php nats->publish('hyperf.demo', [ 'id' => 'Hyperf', ]); return $this->response->success($res); } } ``` 使用 request 投遞消息。 ```php nats->request('hyperf.reply', [ 'id' => 'limx', ], function (Message $payload) { var_dump($payload->getBody()); }); return $this->response->success($res); } } ``` 使用 requestSync 投遞消息。 ```php nats->requestSync('hyperf.reply', [ 'id' => 'limx', ]); return $this->response->success($message->getBody()); } } ```