I'm trying to create short non-colliding strings from longer strings in Ruby. What's the best way to do this? Base64 encode a MD5 hash?
This is the use case:
loop do
key = short_hash("#{user_id}-#{timestamp}")
break if $redis.setnx(key, "0")
end
I don't want key to be too long.
I often use a SHA has for this similar to the example you have. It's not guaranteed to be unique, but is usually good enough for most purposes:
The ruby UUID gem is another option.
But in your specific case since you're using redis, why not just use the redis INCR command? Then you can guarantee the uniqueness at least within your database. For example: