반응형 Data Base/Redis2 [Redis] : Redis 데이터 수정을 위한 데이터 삭제 RedisDB의 수정은 데이터를 수정하는 것 보다 데이터를 삭제하고 다시 저장하는 것이 효율적이다. @GetMapping(value = "redis/deleteDataJSON") public boolean deleteDataJSON() throws Exception { boolean res = iMyRedisService.deleteDataJSON(); return res; } MyRedisController.java boolean deleteDataJSON() throws Exception; IMyRedisService.java @Override public boolean deleteDataJSON() throws Exception { String redisKey = "myRedis_Zset_JSON".. 2022. 5. 17. [Redis] : Zset 타입에 JSON 구조 저장 및 값 저장한 값 가져오기 Redis는 Sorrted Set 데이터구조를 Zset으로 부른다. 이 Zset은 Redis에서 권장하는 데이터 구조이다. Zset과 Set의 차이점 Zset은 Set의 순서에 상관없이 저장되는 문제를 해결하기 위해 저장 순서를 지정할 수 있는 데이터 구조이다. 저장 @GetMapping(value = "redis/saveRedisZSetJSON") public String saveREdisZSetJSON() throws Exception { // 수집 결과 출력 String msg; int res = iMyRedisService.saveRedisZSetJSON(); if (res == 1) { msg = "success"; } else { msg = "fail"; } return msg; } MyRed.. 2022. 5. 17. 이전 1 다음 반응형