|
|
@ -94,7 +94,7 @@ public class IcHouseRedis { |
|
|
|
*/ |
|
|
|
public void setTemporaryCacheHouse(String customerId, Map<String,Object> map,String userId){ |
|
|
|
String key = RedisKeys.getTemporaryHouseInfoCacheKey(customerId,userId); |
|
|
|
redisUtils.hMSet(key,map,RedisUtils.NOT_EXPIRE); |
|
|
|
redisUtils.hMSet(key,map); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
@ -131,7 +131,7 @@ public class IcHouseRedis { |
|
|
|
*/ |
|
|
|
public void setTemporaryCacheGrid(String customerId, Map<String,Object> map,String userId) { |
|
|
|
String key = RedisKeys.getTemporaryGridInfoCacheKey(customerId, userId); |
|
|
|
redisUtils.hMSet(key, map, RedisUtils.NOT_EXPIRE); |
|
|
|
redisUtils.hMSet(key, map); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
@ -182,7 +182,7 @@ public class IcHouseRedis { |
|
|
|
*/ |
|
|
|
public void setTemporaryCacheNeighBorHood(String customerId, Map<String,Object> map,String userId) { |
|
|
|
String key = RedisKeys.getTemporaryNeighborHoodInfoCacheKey(customerId, userId); |
|
|
|
redisUtils.hMSet(key, map, RedisUtils.NOT_EXPIRE); |
|
|
|
redisUtils.hMSet(key, map); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
@ -220,7 +220,7 @@ public class IcHouseRedis { |
|
|
|
*/ |
|
|
|
public void setTemporaryCacheBuilding(String customerId, Map<String,Object> map,String userId) { |
|
|
|
String key = RedisKeys.getTemporaryBuildingInfoCacheKey(customerId, userId); |
|
|
|
redisUtils.hMSet(key, map, RedisUtils.NOT_EXPIRE); |
|
|
|
redisUtils.hMSet(key, map); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
@ -258,7 +258,7 @@ public class IcHouseRedis { |
|
|
|
*/ |
|
|
|
public void setTemporaryCacheBuildingUnit(String customerId, Map<String,Object> map,String userId) { |
|
|
|
String key = RedisKeys.getTemporaryBuildingUnitInfoCacheKey(customerId, userId); |
|
|
|
redisUtils.hMSet(key, map, RedisUtils.NOT_EXPIRE); |
|
|
|
redisUtils.hMSet(key, map); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|