我有一个网站上的表格,从访问者那里收集一些个人信息.我将这些信息传递给另一个服务,我需要分配这些表单中的每一个提交一个100字符的唯一哈希值以存储在DB中与记录.生成这个密钥的最佳方法是什么,并确保它是唯一的?没关系,如果键自动递增.
解决方法
ActiveSupport::SecureRandom.hex(50)
这不是唯一的机会是天文学的.
替代简单“不缩放”竞争条件失败解决方案.
class MyModel < ActiveRecord::Base before_create :assign_unique_token private def assign_unique_token self.unique_token = ActiveSupport::SecureRandom.hex(50) until unique_token? end def unique_token? self.class.count(:conditions => {:unique_token => unique_token}) == 0 end end