All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.accidia.dbz.IDbz Maven / Gradle / Ivy

Go to download

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