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

com.yuweix.kuafu.dao.PersistCache Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.yuweix.kuafu.dao;



/**
 * @author yuwei
 */
public interface PersistCache {
	/**
	 * @param key
	 * @param value
	 * @param timeout 过期时间(s)。
	 * @return
	 */
	boolean put(String key, T value, long timeout);
	T get(String key);
	void remove(String key);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy