public interface AuthCache
Modifier and Type | Method and Description |
---|---|
boolean |
containsKey(String key)
是否存在key,如果对应key的value值已过期,也返回false
|
String |
get(String key)
获取缓存
|
default void |
pruneCache()
清理过期的缓存
|
void |
set(String key,
String value)
设置缓存
|
void |
set(String key,
String value,
long timeout)
设置缓存,指定过期时间
|
void set(String key, String value, long timeout)
key
- 缓存KEYvalue
- 缓存内容timeout
- 指定缓存过期时间(毫秒)boolean containsKey(String key)
key
- 缓存KEYdefault void pruneCache()
Copyright © 2021. All rights reserved.