[Fix] CacheStore 修正Javadoc中的错误描述;

This commit is contained in:
LamGC 2020-06-05 16:29:16 +08:00
parent 9a8aac1960
commit ef5651be47

View File

@ -13,7 +13,7 @@ public interface CacheStore<T> {
* 更新或添加缓存项
* @param key 缓存键名
* @param value 缓存值
* @param expire 有效期, 单位为ms(毫秒), 如不过期传入0或赋值
* @param expire 有效期, 单位为ms(毫秒), 如不过期传入0或负数
*/
void update(String key, T value, long expire);