inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

이수현님의 게시글

이수현 이수현

@brian1103269537

수강평 작성수
2
평균평점
4.5

게시글 1

질문&답변

Redis를 적용했음에도 불구하고 조회 성능의 큰 차이가 없고 오히려 더 안좋은 조회속도를 보이는 것 같습니다.

추가적인 Movie와 MovieDto 코드입니다. @Data public class MovieDto { private Long id; private String title; private String genre; private Integer runningTime; private String descreption; private String director; @JsonFormat(pattern = "yyyy-MM-dd") @JsonSerialize(using = LocalDateSerializer.class) @JsonDeserialize(using = LocalDateDeserializer.class) private LocalDate releaseDate; } @Data @Entity public class Movie { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private String title; private String genre; private Integer runningTime; private String descreption; private String director; @JsonFormat(pattern = "yyyy-MM-dd") @JsonSerialize(using = LocalDateSerializer.class) @JsonDeserialize(using = LocalDateDeserializer.class) private LocalDate releaseDate; }

좋아요수
0
댓글수
3
조회수
176