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

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

There is a newer version: 1.4.0
Show newest version
/**
 * 
 */
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 cacheGroup,String subKey,long expireSeconds); void clearGroupKeys(String cacheGroup); void clearGroupKey(String cacheGroup,String subKey); void clearExpiredGroupKeys(String cacheGroup); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy