我在OpenCPU / Docker中运行R脚本,并查找如何运行将创建后台进程并返回进程已启动的消息的脚本的方式。像这样:
fun1<-function(arg1,arg2){
#calling different function to run in background, using arg1/arg2, no need
#of result now, I will check the result through the file later
fun2(arg1,arg2)
return('Process has started')
}
如何在后台运行fun2?所有功能都在包内,我尝试过Rscript但没有成功。有什么想法或包吗?我相信很多人已经通过这个了。