An open API service indexing awesome lists of open source software.

https://github.com/cbrnrd/ezdb4j

A ezdb client library for Java.
https://github.com/cbrnrd/ezdb4j

daemon ezdb interprocess-communication ipc java java-library nosql

Last synced: 8 months ago
JSON representation

A ezdb client library for Java.

Awesome Lists containing this project

README

          

![ezdb4j-logo](https://i.imgur.com/JWfljkT.png)

# ezdb4j
[![Donations Badge](https://yourdonation.rocks/images/badge.svg)](https://carterbrainerd.me/donations)
[![Build Status](https://travis-ci.org/cbrnrd/ezdb4j.svg?branch=master)](https://travis-ci.org/cbrnrd/ezdb4j)
[ ![Download](https://api.bintray.com/packages/cbrnrd/ezdb4j/ezdb4j/images/download.svg) ](https://bintray.com/cbrnrd/ezdb4j/ezdb4j/_latestVersion)

## Introduction

The Java library for communicating with the ezdb daemon.

## Code Samples

```java
import io.codepace.ezdb4j.*;

// Create a new connection to the ezdb daemon
EzdbConnection connection = EzdbConnector.createConnection();

// Get the value of key and store it as a String
String value = connection.get("keyvalue");

// Kill the connection
connection.terminate();
```

## Installation

### Maven (pom.xml)

```xml

io.codepace
ezdb4j
0.1.1
pom

```

### Gradle (build.gradle)
```groovy
repositories {
jcenter()
}

dependencies {
compile 'io.codepace:ezdb4j:0.1.1'
}
```

### Ivy
```xml

```