vote up 2 vote down star
1

What module/library do you use to generate uuid?

flag

3 Answers

vote up 2 vote down check

Uuid generator from couchdb: http://svn.apache.org/viewvc/couchdb/trunk/src/couchdb/couch%5Fuuids.erl

link|flag
vote up 1 vote down

Why did you use round(math:pow(2, 48))? I think that 1 bsl 48 will work more quickly and code will not lose understanding.

link|flag
vote up 3 vote down

from http://github.com/travis/erlang-uuid

-module(uuid).
-export([v4/0, to_string/1, get_parts/1]).
-import(random).

v4() ->
    v4(random:uniform(math:pow(2, 48)) - 1, random:uniform(math:pow(2, 12)) - 1, random:uniform(math:pow(2, 32)) - 1, random:uniform(math:pow(2, 30)) - 1).
v4(R1, R2, R3, R4) ->
    <<R1:48, 4:4, R2:12, 2:2, R3:32, R4: 30>>.
to_string(U) ->
    lists:flatten(io_lib:format("~8.16.0b-~4.16.0b-~4.16.0b-~2.16.0b~2.16.0b-~12.16.0b", get_parts(U))).

get_parts(<<TL:32, TM:16, THV:16, CSR:8, CSL:8, N:48>>) ->
    [TL, TM, THV, CSR, CSL, N].
link|flag
I cannot execute v4(): 2> uuid:v4(). ** exception error: no function clause matching random:uniform(281474976710656.0) in function uuid:v4/0 – sinnus Nov 1 at 14:16
2  
filed a bug for you ;-) github.com/travis/erlang-uuid/… – Tzury Bar Yochay Nov 1 at 14:56
2  
There is not much point in recalculating math:pow(2, 48) all the time anyway, it could simply be replaced with 16#FFFFFFFFFFFF. The others similarly. – Zed Nov 1 at 17:40
@sinnus check out this commit, this was speedy indeed github.com/travis/erlang-uuid/… – Tzury Bar Yochay Nov 2 at 6:09
Thank you! But I have found another solution from couch_db. – sinnus Nov 2 at 6:36
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.