asp.net mvc - 竞赛条件:锁定具有相同参数的方法

发布于 2024-11-29 02:51:44 字数 368 浏览 0 评论 0原文

我正在开发一个 asp.net mvc 3 Web 应用程序。 在我的应用程序中,我有一个 JavaScript 客户端向我的服务器发送调用。 其中一个调用定向到我的一个方法,该方法依次:

  • 创建对象的新实例 -
  • 将其保存到数据库
  • 调用远程 Web 服务器。

我通过查询数据库来决定是否退出该函数,以查看该对象是否确实存在(如果存在,我退出)。

我的问题是,如果两个调用相继进行,则该对象没有机会保存到数据库中,因此两个线程都会认为它们需要继续。

我想要的是仅锁定使用相同参数调用的线程的方法。对整个方法甚至部分方法使用锁是不可接受的,因为这会导致严重的性能问题。

这怎么能做到呢?

I am developing an asp.net mvc 3 web application.
In my application I've got a javascript client sending calls to my server.
One of the calls is directed to a method of mine, that in turn:

  • Creates a new instance of an object -
  • Saves it to the database
  • Calls a remote web server.

I decide if to exit the function by querying my database to see if the object truly does exist (if so, I exit).

My problem is that if two calls are made just one after the other, the object hasn't had the chance to be saved to the database, and so both threads will think that they need to continue.

What I'd like is to lock the method for only threads that are called with the same parameters. Using a lock on the entire method, or even parts of it is unacceptable, as it will cause severe performance issues.

How can this be done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

撕心裂肺的伤痛 2024-12-06 02:51:44

对于此场景,请使用具有可序列化隔离级别的数据库事务。这应该确保读取和插入操作的一致性。

Use database transactions with serializable isolation level for this scenario. This should ensure the consistency of your read and insert operations.

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