我需要对控制器动作进行一些缓慢的操作。但不必等待此操作进行响应呈现。
class ProductController < ActionController
def update
slow_operations()
render json: {status: 'ok'}
end
end
即使我render
在 Product#update 操作之后移动我的代码,它也不会减少响应时间。
class ProductController < ActionController
def update
render json: {status: 'ok'}
slow_operations()
end
end
如何在执行慢速操作之前强制返回完整响应?