We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Pagination 방식 변경
변경전의 상황과 변경하려는 이유를 작성해주세요.
기존의 Pagination 구현 방식은 offset 방식.
만약 0번째 페이지를 불러왔는데 중간에 다른 사용자가 데이터를 추가해서 0번째에서 불러왔던 데이터가 1번째 페이지에도 포함이 되어서 중복 조회되면 어떡하지?
이런 문제가 있을 수 있다고 생각했다.
찾아보니까 offset 기반이 아니고 cursor 기반으로 구현하는 방법이 있다고 한다. Cursor based Pagination(커서 기반 페이지네이션)이란? - Querydsl로 무한스크롤 구현하기
변경후의 예상하는 구조를 작성해주세요.
The text was updated successfully, but these errors were encountered:
tmddus2
No branches or pull requests
Description
Pagination 방식 변경
Before
변경전의 상황과 변경하려는 이유를 작성해주세요.
기존의 Pagination 구현 방식은 offset 방식.
이런 문제가 있을 수 있다고 생각했다.
찾아보니까 offset 기반이 아니고 cursor 기반으로 구현하는 방법이 있다고 한다. Cursor based Pagination(커서 기반 페이지네이션)이란? - Querydsl로 무한스크롤 구현하기
After
변경후의 예상하는 구조를 작성해주세요.
Todo
ETC
The text was updated successfully, but these errors were encountered: