初始化hash缓存-get

master
DongZeLiang 2024-03-30 11:19:52 +08:00
parent e1d039804c
commit 2bc592c87e
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ public abstract class HashCacheAbs<K, HK, HV> implements HashCache<K, HK, HV> {
*/
@Override
public HV get (K key, HK hashKey) {
return null;
return redisService.getCacheMapValue(encode(key), encodeHashKey(hashKey));
}
/**