com.distkv:distkv-test

Distkv project is a memory-based distributed key-value storage system. Besides these features, dst can support table concept which looks like tables in relational databases. We use java to finish this project, which is somewhat different from most databases using c/c++.

License

License

GroupId

GroupId

com.distkv
ArtifactId

ArtifactId

distkv-test
Last Version

Last Version

0.1.3
Release Date

Release Date

Type

Type

jar
Description

Description

Distkv project is a memory-based distributed key-value storage system. Besides these features, dst can support table concept which looks like tables in relational databases. We use java to finish this project, which is somewhat different from most databases using c/c++.

Download distkv-test

How to add to project

<!-- https://jarcasting.com/artifacts/com.distkv/distkv-test/ -->
<dependency>
    <groupId>com.distkv</groupId>
    <artifactId>distkv-test</artifactId>
    <version>0.1.3</version>
</dependency>
// https://jarcasting.com/artifacts/com.distkv/distkv-test/
implementation 'com.distkv:distkv-test:0.1.3'
// https://jarcasting.com/artifacts/com.distkv/distkv-test/
implementation ("com.distkv:distkv-test:0.1.3")
'com.distkv:distkv-test:jar:0.1.3'
<dependency org="com.distkv" name="distkv-test" rev="0.1.3">
  <artifact name="distkv-test" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.distkv', module='distkv-test', version='0.1.3')
)
libraryDependencies += "com.distkv" % "distkv-test" % "0.1.3"
[com.distkv/distkv-test "0.1.3"]

Dependencies

compile (10)

Group / Artifact Type Version
org.openjdk.jmh : jmh-core jar 1.21
org.openjdk.jmh : jmh-generator-annprocess jar 1.21
com.distkv : distkv-core jar 0.1.3
com.distkv : distkv-client jar 0.1.3
com.distkv : distkv-parser jar 0.1.3
com.distkv : distkv-pine jar 0.1.3
com.distkv : distkv-server jar 0.1.3
org.dousi : dousi-protocol jar 0.1.0-SNAPSHOT
ch.qos.logback : logback-classic jar 1.2.3
redis.clients : jedis jar 3.1.0

test (1)

Group / Artifact Type Version
org.testng : testng jar 7.0.0

Project Modules

There are no modules declared in this project.

distkv build codebeat badge codecov

A distributed key-value database system with table concept.

Project Description

Distkv project is a distributed key-value database system. Besides these features, Distkv supports table concept which looks like tables in relational databases. It also supports a rich ecosystem, named Pine, which has many easy-to-use and out-of-the-box components for Web application and micro-service.

Full document is https://distkv.com

Awesome Features

  1. Redis-like data structure
  2. Table concept based on kv store
  3. Strong consistency model
  4. Easy to use clients
  5. Strong ecosystem for Web application and micro-service

Quick Started

1. Install Distkv

First make sure you have the python environment.

Then running the following command to install the Distkv locally:

pip install -e deploy/python -v

2. Start Distkv server

Running the following command to start the Distkv server.

$ dkv-server

3. Start Distkv command line tool

Running the following command to start the command line tool of a Distkv client.

$ dkv-cli

4. Command Line Tool

Once you started the command line tool dkv-cli successfully, type the following command to enjoy the trip of Distkv.

dkv-cli > list.put "k1" "v1" "v2" "v3"
dkv-cli > ok
dkv-cli > list.get "k1"
dkv-cli > ["v1", "v2", "v3"]

dkv-cli > int.put "k1" 1
dkv-cli > ok
dkv-cli > int.incr "k1" 2
dkv-cli > ok
dkv-cli > int.get "k1"
dkv-cli > 3

Client SDK

Now we support both Java Client SDK and Java Async Client SDK. We are working in progress to support other languages SDK.

Configure you dependency of Distkv client in pom.xml:

<dependency>
    <groupId>com.distkv</groupId>
    <artifactId>distkv-client</artifactId>
    <version>0.1.3</version>
</dependency>

To use Distkv client in Java, see the following examples:

Who Is Using

Getting Involved

Thank you for your attention to the Distkv project. If you have any questions, you can create a new issue in our Issues list. We also welcome you to participate in our Distkv project, if you want to make contributions, you can refer the file CONTRIBUTING.md.

com.distkv

distkv

A distributed key value database with table concept.

Versions

Version
0.1.3