From 9dbe77b7034a2242d9f6e16e231fe3e8e5ba9ec6 Mon Sep 17 00:00:00 2001 From: "Yangkai.Shen" <237497819@qq.com> Date: Sat, 31 Aug 2019 12:38:42 +0800 Subject: [PATCH] =?UTF-8?q?:memo:=20=E8=A1=A5=E5=85=85=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/xkcoding/justauth/properties/CacheProperties.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/xkcoding/justauth/properties/CacheProperties.java b/src/main/java/com/xkcoding/justauth/properties/CacheProperties.java index 40dc2e3..a1a610e 100644 --- a/src/main/java/com/xkcoding/justauth/properties/CacheProperties.java +++ b/src/main/java/com/xkcoding/justauth/properties/CacheProperties.java @@ -40,12 +40,12 @@ public class CacheProperties { private CacheType type = CacheType.DEFAULT; /** - * 缓存前缀,只在配置外部缓存时生效,默认 JUSTAUTH::STATE:: + * 缓存前缀,目前只对redis缓存生效,默认 JUSTAUTH::STATE:: */ private String prefix = "JUSTAUTH::STATE::"; /** - * 超时时长,默认3分钟 + * 超时时长,目前只对redis缓存生效,默认3分钟 */ private Duration timeout = Duration.ofMinutes(3);