-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
모임 일정 시간 조회 - 페이징 처리 #121
Labels
refactor
리팩토링
Comments
문제가 될 것 같은 점
|
대응 방향커서 기반 페이지네이션이 적당해보임 시간을 잘 활용해보면 되지 않을까? |
해결 방안
구현 방법
문제점
|
TODO
|
f1v3-dev
added a commit
that referenced
this issue
Sep 30, 2024
f1v3-dev
added a commit
that referenced
this issue
Oct 1, 2024
f1v3-dev
added a commit
that referenced
this issue
Oct 1, 2024
[Refactor] 모임 일정 시간 페이징 처리 및 베스트 타임 API
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
🛠️ 어떤 기능인가요?
현재 상황
300개가 넘는 데이터를 한 번에 가져오는 상황
default.mov
요청에 대한 응답 시간
위 사진처럼, 모임 일정 시간 조회 API 는 데이터를 한 번에 조회를 진행하는 쿼리로 되어있습니다.
별도의 페이징 처리 없이 응답을 하기 때문에
이러한 문제를 해결하고자, 페이징 처리 기법을 도입하려고 하며, 그 중 무한 스크롤 방식으로 구현하려고 합니다.
추가 사항
스프링에서 제공하는
Page
객체를 사용할 경우, 불필요한 응답값이 존재할 수 있습니다.따라서, 커스텀 페이징 응답 객체를 별도로 만드는게 좋아보입니다.
🗒️ 작업 상세 내용
The text was updated successfully, but these errors were encountered: