This is an automated email from the ASF dual-hosted git repository.

dlive pushed a commit to branch 0.4.0
in repository https://gitbox.apache.org/repos/asf/dubbo-erlang.git


The following commit(s) were added to refs/heads/0.4.0 by this push:
     new 6dbb46e  update feature list and usages
6dbb46e is described below

commit 6dbb46efe4286471188ad11f6e0218b6082f0c9a
Author: DLive <xsxgm...@163.com>
AuthorDate: Wed Aug 7 23:14:09 2019 +0800

    update feature list and usages
---
 README.md | 31 ++++++++++++++++---------------
 1 file changed, 16 insertions(+), 15 deletions(-)

diff --git a/README.md b/README.md
index eccd16b..8e5f1e0 100644
--- a/README.md
+++ b/README.md
@@ -14,13 +14,12 @@ The following features are supported.
 * Serialize
        * Hessian serialize (√)
        * Json serialize (√)
-* Erlang project as a consumer (√)
-* Erlang project as a provider (√)
-* Sync invoker (√)
-* Async invoker (√)
-* Random load balance (√)
-* Network rate limit (√)
+* Erlang project as consumer or provider (√)
+* Sync and Async invoker (√)
+* Random loadbalance (√)
 * Connection pools (√)
+* Support protocol,cluster,loadbalance,registry and filter extension point.
+
 
 Start
 -----
@@ -46,15 +45,17 @@ in sys.config add dubboerl config.
 For example:
 ```erlang
 {dubboerl,[
-       {zookeeper_list,[{"127.0.0.1",2181}]},
-       {application,<<"testdubboerl">>},
-       {consumer,[
-               
{<<"org.apache.dubbo.erlang.sample.service.facade.UserOperator">>,[]}
-       ]},
-       {provider,[
-               
{user_impl,userOperator,<<"org.apache.dubbo.erlang.sample.service.facade.UserOperator">>,[]}
-       ]}
-       
+    {application,<<"testdubboerl">>},
+    {protocol, {dubbo, [{port, 20882}]}},
+    {registry,zookeeper},
+    {zookeeper_list,[{"127.0.0.1",2181}]},
+    {serialization,hessian},
+    {consumer,[
+        {<<"org.apache.dubbo.erlang.sample.service.facade.UserOperator">>,[]}
+    ]},
+    {provider,[
+        
{user_impl,userOperator,<<"org.apache.dubbo.erlang.sample.service.facade.UserOperator">>,[]}
+    ]}
 ]}
 ```
 

Reply via email to