Skip to content

stackmagic/arangodb-wal-client

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

arangodb-wal-client

ArangoDB Write-Ahead-Log Client in Java

TravicCI Download

downloading

gradle

the jcenter() shortcut requires at least gradle 1.7

repositories {
    jcenter()
}

dependencies {
    compile 'net.swisstech:arangodb-wal-client:+'
}

maven

<repository>
    <id>jcenter</id>
    <url>https://jcenter.bintray.com/</url>
</repository>
<dependency>
    <groupId>net.swisstech</groupId>
    <artifactId>arangodb-wal-client</artifactId>
    <version>...</version>
</dependency>

Compatibility

2.0.0

  • OK arangodb-3.3.x
  • OK latest 3.4-RC as of 2018-10-13 (RC2 won't start in docker or takeks too long)

Changelog

2.0.0

  • upgrade gradle
  • run inttests with docker
  • fix tests/pojos

TODO

  • WalEvent: prevent parsing of the data field and just use it as-is (saves a bit of cpu/mem)