I try to use the okeuday/uuid lib to generate a <<_|128>> V4 UUID and use that as my RIAK Key to store data.
I use the git://github.com/basho/riak-erlang-client.git master Version.
When i use the binary int as key no data is stored and i got no error. When i modify it as a binary string uuid:uuid_to_string(uuid:get_v4()), my code works and i can store data.
I started new buckets to avoid keytype missmatches.
According to the basho manuals i can use any binary value as KEY ???
I am wrong ?