ActiveRecord 基于属性的动态查找器是线程安全的吗?

发布于 2024-11-09 15:52:33 字数 307 浏览 0 评论 0原文

根据 这篇(较早的)帖子,这些 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

神经暖 2024-11-16 15:52:33

是的。在执行第一个语句和创建对象的时间内,可以并行执行第二个语句。
没有独占锁。

防止这种情况的最佳方法是在模型中添加唯一验证并在数据库中添加唯一索引。这样,如果您尝试创建具有相同字段的两条记录,数据库将引发错误。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文