![JAR search and dependency download from the Maven repository](/logo.png)
org.accidia.dbz.IDbz Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbz Show documentation
Show all versions of dbz Show documentation
DBZ provides a simple interface to store/retrive key/value pairs on BerkeleyDB JE or MySQL
The newest version!
package org.accidia.dbz;
import java.io.IOException;
public interface IDbz {
byte[] get(final String guid) throws IOException;
void set(final String guid, final byte[] valueBytes) throws IOException;
void delete(final String guid) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy