I'm looking for solution to create processes in an R application and after a restart of R to be able to check if processes are still running/finished, etc. For example:
# save
saveRDS(p, file = "process.rds")
# load after R restart
p <- readRDS("process.rds")
p
As this point R crashes as there are null pointers in the restored p object. Any chance there will be a possiblity to store process objects?