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

com.jeesuite.mybatis.plugin.cache.CacheProvider Maven / Gradle / Ivy

/**
 * 
 */
package com.jeesuite.mybatis.plugin.cache;

import java.io.Closeable;

/**
 * @description 
* @author vakin * @date 2016年3月23日 * @Copyright (c) 2015, jwww */ public interface CacheProvider extends Closeable{ T get(String key); String getStr(String key); boolean set(String key,Object value,long expired); boolean remove(String key); void putGroupKeys(String cacheGroupKey,String subKey,long expireSeconds); void clearGroupKeys(String cacheGroupKey); void clearGroupKey(String cacheGroupKey,String subKey); void clearExpiredGroupKeys(String cacheGroup); void clearGroup(String groupName); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy