-
Notifications
You must be signed in to change notification settings - Fork 7
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
Clarify Number UUID #35
Comments
Yep, so far we are unsure how to implement nice readable array/matrix indices. |
@gritzko do you mean |
Why should it be readable? |
Nope. Frame size limit is 2^31. Hence, we only need five base64 digits for an index. Human readability is the reason we need the text format. |
Recently, I was working a lot with JNI, which uses JVM's internal notation a lot. |
@gritzko such exceptions make the format harder to implement. 5 zeroes which will be often shortened to |
@cblp IMO, that's a minor convention. I mean, using the upper 30 bits. |
@gritzko OK, this may work |
uuid.md says:
This needs clarification. Due to the rules for compression,
4%5
should be the same as4000000000%5000000000
, which is unexpected 😄 The 2D index (4,5) would be represented as0000000004%0000000005
, right?It seems number UUIDs are currently unused, so the impact is low.
The text was updated successfully, but these errors were encountered: