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

cacheonix.cache.Cache Maven / Gradle / Ivy

There is a newer version: 5.0.0-release
Show newest version
package cacheonix.cache;

import java.util.Map;

public interface Cache extends Map
{
    V get(Object key);
    String getName();
    V put(K key, V value);
    V put(K key, V value, long expirationMillis);
    V remove(Object key);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy