1

在我的应用程序中,我有用户将对患者记录资源执行 CRUD 操作。通常,在创建患者记录后,它只会被用户读取。但是,在极少数情况下,两个(或更多)用户决定出于某种原因想要编辑该共享资源,解决此问题的最佳方法是什么?

我一直在阅读有关乐观和悲观锁定的信息,但我仍然不清楚这是否仅适用于更新操作,还是每次有人尝试读取资源时都会发生锁定?

我在想的是,是否有一种方法可以在 Rails 中查看两个或多个用户何时在同一页面上,从而通知第二个用户进入编辑页面另一个用户已经在使用该资源,因此只需等待让第一个用户在继续之前完成。

你会如何处理这个问题?谢谢!

4

1 回答 1

0

您可以使用acts_as_lockable_by gem 来做到这一点。

按照您问题中的示例:

class Patient < ApplicationRecord
  acts_as_lockable_by :id, ttl: 30.seconds
end

然后您可以在控制器中执行此操作:

class PatientsController < ApplicationController
  def edit
    if patient.lock(current_user.id) 
      # It will be locked for 30 seconds for the current user
      # You will need to renew the lock by calling /patients/:id/renew_lock
    else
      # Could not lock the patient record which means it is already locked by another user
    end
  end

  def renew_lock
    if patient.renew_lock(current_user.id)
      # lock renewed return 200
    else
      # could not renew the lock, it might be already released
    end
  end

  private

  def patient
    @patient ||= Patient.find(params[:id])
  end
end
于 2018-11-06T14:46:15.310 回答