Typically, the best way to do this is to store, in your database, an indication of the job's progress. For instance:
class User
def perform_calculation
begin
self.update_attributes :calculation_status => 'started'
do_something_complex
self.update_attributes :calculation_status => 'success'
rescue Exception => e
self.update_attributes :calculation_status => 'error'
end
end
end
So that when you enqueue the job:
User.update_attributes :calculation_status => 'enqueued'
User.send_later :perform_calculation
You can query, in your controller, the status of the job:
def check_status
@user = User.find(params[:id])
render :json => @user.calculation_status
end
You polling ajax process can then simply call check_status to see how the job is progressing, if it has succeeded or if it has failed.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…