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.
- Host: GitHub
- URL: https://github.com/cbrnrd/ezdb4j
- Owner: cbrnrd
- License: mit
- Created: 2018-05-23T17:06:12.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-03T04:32:10.000Z (almost 8 years ago)
- Last Synced: 2025-03-26T14:28:54.653Z (about 1 year ago)
- Topics: daemon, ezdb, interprocess-communication, ipc, java, java-library, nosql
- Language: Java
- Size: 333 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# ezdb4j
[](https://carterbrainerd.me/donations)
[](https://travis-ci.org/cbrnrd/ezdb4j)
[  ](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
```