我想知道解决这种情况的最佳策略是什么,假设我有这个动作:
class BetsController < ApplicationController
def create
@bet = Bet.new(params[:bet])
# some other operation
end
end
有时我会收到大量关于此操作的调用,我可能会丢失数据,我应该每次都生成一个线程吗?有什么建议么?
我想知道解决这种情况的最佳策略是什么,假设我有这个动作:
class BetsController < ApplicationController
def create
@bet = Bet.new(params[:bet])
# some other operation
end
end
有时我会收到大量关于此操作的调用,我可能会丢失数据,我应该每次都生成一个线程吗?有什么建议么?