When I run a background job which includes saving down the results, the resulting .RData file doesn't include most assign values.
Run this as a background job:
x <- 1
y <- 3
save.image(file = "~/Desktop/example.RData")
In console:
rm(list=ls())
load(file = "~/Desktop/example.RData")
ls()