ActiveRecord 基于属性的动态查找器是线程安全的吗?
根据 这篇(较早的)帖子,这些 Rails 3 查找器存在竞争条件。 类似的东西
User.find_or_create_by_username(:username => 'uuu', :password => 'xxx')
根据该帖子,在某些条件下,
可能会创建两条记录。这对于 Rails 3.0+ 仍然相关吗?谢谢
according to this (older) post these Rails 3 finders have race conditions. Something like
User.find_or_create_by_username(:username => 'uuu', :password => 'xxx')
could possibly create two records under some conditions according to the post.
Is this still relevant for Rails 3.0+ ? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。在执行第一个语句和创建对象的时间内,可以并行执行第二个语句。
没有独占锁。
防止这种情况的最佳方法是在模型中添加唯一验证并在数据库中添加唯一索引。这样,如果您尝试创建具有相同字段的两条记录,数据库将引发错误。
Yes, it is. In the amount of time the first statement is executed and the object created, a second statement can be executed in parallel.
There's no exclusive lock.
The best way to prevent this is to add an unique validation in your model and an unique index in your database. In this way, the database will raise an error if you try to create two records with the same fields.