You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicecomb.apache.org by as...@apache.org on 2019/06/27 11:53:17 UTC

[servicecomb-kie] 06/29: Merge pull request #2 from tianxiaoliang/master

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

asifdxtreme pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/servicecomb-kie.git

commit 151158fd1e9ce7c3fe8650b587f0f8520afcddcd
Merge: a1c0700 65b7c24
Author: little-cui <su...@qq.com>
AuthorDate: Thu May 9 16:12:43 2019 +0800

    Merge pull request #2 from tianxiaoliang/master
    
    add kv data access api

 deployments/docker/docker-compose.yaml |  35 ++++
 go.mod                                 |  16 ++
 pkg/model/kv.go                        |  41 +++++
 pkg/model/kv_test.go                   |  45 +++++
 server/config/config.go                |  44 +++++
 server/config/config_test.go           |  51 ++++++
 server/config/struct.go                |  29 ++++
 server/kv/errors.go                    |  35 ++++
 server/kv/kv.go                        |  62 +++++++
 server/kv/kv_test.go                   | 192 +++++++++++++++++++++
 server/kv/model_suite_test.go          |  44 +++++
 server/kv/mongodb.go                   | 304 +++++++++++++++++++++++++++++++++
 server/kv/options.go                   |  49 ++++++
 13 files changed, 947 insertions(+)