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

com.fastchar.interfaces.IFastCacheProvider Maven / Gradle / Ivy

package com.fastchar.interfaces;

import java.util.List;
import java.util.Set;

public interface IFastCacheProvider {

    boolean exists(String tag, String key);

    Set getTags(String pattern);

    void setCache(String tag, String key, Object data) throws Exception;

     T getCache(String tag, String key) throws Exception;

    void deleteCache(String tag);

    void deleteCache(String tag, String key);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy