Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.


I am looking for advise about best practices of generating unique hash strings in Ruby/Rails. Usually I use MD5, SHA etc to do this, but it was not quite straightforward to choose source values for hash (timestamps not always prefered to be used).
So my question are:

  1. What values prefered to be used for generating unique hashes? (database column values, timestamps etc)
  2. Are there any gems for this kind of work?

Any advise would be appreciated.

share|improve this question

1 Answer

up vote 14 down vote accepted

Use UUIDs:

In ruby 1.9

require 'securerandom'
SecureRandom.uuid

In ruby 1.8

$ gem install uuidtools

UUIDTools::UUID.random_create
share|improve this answer
If you want a hex value: SecureRandom.hex gives you eb693ec8252cd630102fd0d0fb7c3485 – Michael Irey May 6 at 18:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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