-
Notifications
You must be signed in to change notification settings - Fork 55
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
child prefixes 관리 구조 개선 - skip list 사용 #562
Comments
@jhpark816
라는 스킵리스트 노드의 포인터 개수를 결정하는 함수가 있다고 가정할 때, rand()를 사용할 때, 시드값 설정 함수 인자로 무엇을 주어야하는지 결정해야될 것 같습니다. 일반적으로 시드값으로 시간값을 주는 데, 시드값으로 시간값을 줘도 상관이 없을까요?
|
저도 b+tree 컬렉션에서 sorted set을 구현하는데 #480 skip list로 구현하려고 하고 있습니다. 혹시 이번 이슈와 공통된 내용이 있다면 같이 논의해도 될까요? |
@HarryKim93 @dongwooklee96 |
@HarryKim93
@dongwooklee96 |
@jhpark816 |
@dongwooklee96 |
child prefixes 관리 구조를 개선한다.
기존 구조
탐색 시에 child prefixes를 제외하는 로직을 가져야 한다.
이 경우, prefix hash table의 모든 prefixes를 탐색해야 하는 부담이 있다.
prefix hash table 확장이 고려되어야 한다.
개선 구조
The text was updated successfully, but these errors were encountered: