-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Add article on generating sequential GUIDs in .NET #23873
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
Conversation
Added a new community article explaining the drawbacks of random GUIDs for clustered indexes and the benefits of sequential GUIDs, with a focus on ABP Framework's default sequential GUID generation. Includes a cover image for the article.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds a new community article that explains the performance problems with random GUIDs in clustered indexes and demonstrates how ABP Framework's sequential GUID generation solves these issues. The article provides technical insights into database performance optimization and showcases ABP's built-in solution.
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
|
|
||
| ## Sequential GUIDs to the Rescue | ||
|
|
||
| Sequential GUIDs keep the uniqueness but add a predictable ordering component — usually by embedding a timestamp in part of the GUID.This means: |
Copilot
AI
Oct 3, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing space after the period before 'This means:'.
docs/en/Community-Articles/2025-10-03-Generating-Sequential-GUIDs/Post.md
Outdated
Show resolved
Hide resolved
docs/en/Community-Articles/2025-10-03-Generating-Sequential-GUIDs/Post.md
Outdated
Show resolved
Hide resolved
|
Images automagically compressed by Calibre's image-actions ✨ Compression reduced images by 75.1%, saving 617.3 KB.
|
…IDs/Post.md Co-authored-by: Copilot <[email protected]>
…IDs/Post.md Co-authored-by: Copilot <[email protected]>
…ework/abp into article-sequential-guids
Added a new community article explaining the drawbacks of random GUIDs for clustered indexes and the benefits of sequential GUIDs, with a focus on ABP Framework's default sequential GUID generation. Includes a cover image for the article.
Description
Resolves https://github.com/volosoft/vs-internal/issues/7141
Checklist