English 中文(简体)
增强:在不同数据库中建立/独一无二
原标题:boost::uuid / unique across different databases

我想产生一个精干的标识,应当作为不同系统/数据库的独特识别特征。 我阅读了这些例子,但我不理解,如何能够确保所生成的补贴在不同系统和数据库中是独特的。

我希望你能够帮助我在这里发言。

最佳做法

最佳回答

The idea behind a UUID is -- depending on how they are generated -- that there are so many values representable with 122-bits* that the chance of accidental collisions -- again, depending on how they are generated -- is very, very, very, very, very, very, very, very, small.

摘自Wikipedia的UUID第4版(Leach-Salz Random):

换言之,只是在今后100年内每二年生产10亿德国马克之后,仅仅制造一个重复的可能性约为50%。 如果地球上的每个人都拥有6亿万德国马克,则一个重复的可能性约为50%。

... however, these probabilities only hold when the UUIDs are generated using sufficient entropy.

当然,还有其他UUID的生成计划和“众所周知的GUIDs”,并非所有这些计划都适合“全球-unique”的使用。 (此外,由于插入的零散,未专门化的UUID倾向于不为初级/专门化钥匙工作:服务器NEWSE RequestNTID,以帮助处理这一问题。)

幸福 co。


页: 1 我不知道哪些用途是提高的,但我? 这也是UUIDv4。

问题回答

暂无回答




相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签