-
Notifications
You must be signed in to change notification settings - Fork 0
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
분산 데이터베이스 객체 ID / Entity PK 설정 / MySQL 인덱스 성능 고민 #87
Comments
rivkode
changed the title
분산 데이터베이스 객체 ID / Entity PK 설정 고민
분산 데이터베이스 객체 ID / Entity PK 설정 / MySQL 인덱스 성능 고민
Apr 28, 2024
rivkode
added a commit
that referenced
this issue
Jun 10, 2024
rivkode
added a commit
that referenced
this issue
Jun 10, 2024
rivkode
added a commit
that referenced
this issue
Jun 10, 2024
rivkode
added a commit
that referenced
this issue
Jun 10, 2024
IdGenerator -> TokenGenerator 기존 Id 생성 역할을 Token 생성으로 변경
rivkode
added a commit
that referenced
this issue
Jun 10, 2024
rivkode
added a commit
that referenced
this issue
Jun 10, 2024
rivkode
added a commit
that referenced
this issue
Jun 10, 2024
기존 id -> token으로 변경 id -> Long 타입 token -> String 타입
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
📌 Feature Issue
현재 객체 ID (엔티티 객체 식별) 생성을 직접 구현한 IdGenerator로 객체 ID를 생성하고 있습니다.
(UUID, long 타입을 사용하지 않음)관련 PR
하지만 이 객체 ID가 PK로서, 클러스터 인덱스로서 적합한지에 대한 고민을 하고 있습니다.
MySQL에서는 PK를 클러스터 인덱스로 구성되어 항상 정렬된 인덱스를 유지하기 위해 비용이 발생하게 됩니다.
장점
객체를 유일하게 식별한다xxx-post-xxxx
형태로 가독성 증가단점
고민내용
To-do
ETC
The text was updated successfully, but these errors were encountered: