com.aerospike.jdbc.schema.OptionalCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aerospike-jdbc Show documentation
Show all versions of aerospike-jdbc Show documentation
A JDBC driver for the Aerospike database
The newest version!
package com.aerospike.jdbc.schema;
import java.util.Optional;
public interface OptionalCache {
Optional get(K key);
void put(K key, V value);
void clear();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy