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

io.datakernel.loader.cache.Cache Maven / Gradle / Ivy

Go to download

High-performance asynchronous HTTP clients and servers collection. Package contains a bunch of different built-in servlets for request dispatching, loading of a static content, etc.

There is a newer version: 3.1.0
Show newest version
package io.datakernel.loader.cache;

public interface Cache {

    byte[] get(String key);

    void put(String key, byte[] value);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy