This is an automated email from the ASF dual-hosted git repository.
dinglei pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/rocketmq-mqtt.git
The following commit(s) were added to refs/heads/main by this push:
new 344cb70 Fix the bug of Get Start in Readme (#78)
344cb70 is described below
commit 344cb70dafd074b60e18e48fe63a436005c0339b
Author: Dongyuan Pan <[email protected]>
AuthorDate: Wed Apr 20 16:29:06 2022 +0800
Fix the bug of Get Start in Readme (#78)
* Fix the bug of Get Start in Readme
* Tips for optimizing broker configuration
---
README.md | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 3daef9d..a1ed7ba 100644
--- a/README.md
+++ b/README.md
@@ -18,6 +18,11 @@ The queue model of MQTT needs to be based on the light
message queue, For the de
The queue model of MQTT needs to be based on the light message queue feature
([RIP-28](https://github.com/apache/rocketmq/pull/3694)) of RocketMQ. RocketMQ
has only supported this feature since version 4.9.3. Please ensure that the
installed version of RocketMQ already supports this feature.
For the quick start of light message queue, please refer to
[Example_LMQ](https://github.com/apache/rocketmq/blob/develop/docs/cn/Example_LMQ.md)
of RocketMQ.
+For example, set the following parameters to true in broker.conf
+```
+enableLmq = true
+enableMultiDispatch = true
+```
1. Clone
@@ -31,7 +36,7 @@ mvn clean package -DskipTests=true assembly:assembly
```
3. Config
```shell
-cp -r target/rocketmq-mqtt ~
+cp -r target/rocketmq-mqtt/rocketmq-mqtt ~
cd ~/rocketmq-mqtt
cd conf
```