【7.3.2】【cache】优化key的格式规范

pull/41/head
fengshuonan 2022-11-08 01:14:37 +08:00
parent 245b05e94a
commit 000fb3fb89
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ public interface CacheOperatorApi<T> {
if (StrUtil.isBlank(keyParam)) {
return tenantPrefix + CACHE_DELIMITER + getCommonKeyPrefix();
} else {
return tenantPrefix + CACHE_DELIMITER + getCommonKeyPrefix() + keyParam.toUpperCase();
return tenantPrefix + CACHE_DELIMITER + getCommonKeyPrefix() + CACHE_DELIMITER + keyParam.toUpperCase();
}
}