You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,7 @@ Fundamental elements of DDD implementation in Golang microservice
24
24
- Need to have random, unique identity values for entities
25
25
- To decouple domain layer from persistence layer, we should not use table row's id for entity's identity
26
26
- MySQL support storing UUIDv1 as BINARY(16) in database which saves storage space
27
+
- Comparing UUIDv1 values is faster than comparing values of the other versions (they have common dash-separated groups if they are generated on a same machine)
27
28
28
29
### References
29
30
-[Making UUIDs More Performant in MySQL](https://emmer.dev/blog/making-uuids-more-performant-in-mysql/)
0 commit comments