This is an automated email from the ASF dual-hosted git repository.
dongeforever pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-client-cpp.git
The following commit(s) were added to refs/heads/master by this push:
new e99ba60 Polish readme
e99ba60 is described below
commit e99ba6062a36f55674a9d0da7dd0075f6ec189e5
Author: dongeforever <[email protected]>
AuthorDate: Thu Dec 6 20:55:18 2018 +0800
Polish readme
---
.gitignore | 2 ++
README.md | 69 --------------------------------------------------------------
2 files changed, 2 insertions(+), 69 deletions(-)
diff --git a/.gitignore b/.gitignore
index d414bcc..e1f4b40 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,6 @@
.idea
cmake-build-debug/
+bin
+libs
tmp_*
diff --git a/README.md b/README.md
index 55554cc..2c0c9f9 100644
--- a/README.md
+++ b/README.md
@@ -62,74 +62,5 @@ If your host is not available to internet to download the
four library source fi
And then run following command to build rocketmq-client:
win32_build.bat build
-
-
-## Quick Start
-### Tools and Commands
-
-- sync produce message
-
-```shell
-./SyncProducer -g group1 -t topic1 -c test message -n 172.168.1.1:9876
-```
-
-- async produce message
-
-```shell
-./AsyncProducer -g group1 -t topic -c test message -n 172.168.1.1:9876
-```
-
-- send delay message
-
-```shell
-./SendDelayMsg -g group1 -t topic -c test message -n 172.168.1.1:9876
-```
-
-- sync push consume message
-
-```shell
-./PushConsumer -g group1 -t topic -c test message -s sync -n 172.168.1.1:9876
-```
-
-- async push comsume message
-
-```shell
-./AsyncPushConsumer -g group1 -t topic -c test message -n 172.168.1.1:9876
-```
-
-- orderly sync push consume message
-
-```shell
-./OrderlyPushConsumer -g group1 -t topic -c test message -s sync -n
172.168.1.1:9876
-```
-
-- orderly async push consume message
-
-```shell
-./OrderlyPushConsumer -g group1 -t topic -c test message -n 172.168.1.1:9876
-```
-
-- sync pull consume message
-
-```shell
-./PullConsumer -g group1 -t topic -c test message -n 172.168.1.1:9876
-```
-
-### Parameters for Tools
-```bash
--n : nameserver addr, format is ip1:port;ip2:port
--i : nameserver domain name, parameter -n and -i must have one.
--g : groupName, contains producer groupName and consumer groupName
--t : message topic
--m : message count(default value:1)
--c : message content(default value: only test)
--b : consume model(default value: CLUSTER)
--a : set sync push(default value: async)
--r : set retry times(default value:5 times)
--u : select active broker to send message(default value: false)
--d : use AutoDeleteSendcallback by cpp client(defalut value: false)
--T : thread count of send msg or consume message(defalut value: system cpu
core number)
--v : print more details information
-```