R: set 'Checkpoint' on Worker of Cluster
问题 I use the following code to ... 1. create a parallel cluster 2. source test.R 3. and do some parallel work with functions defined in 'test.R' library(parallel) cl <- makeCluster(4) clusterEvalQ(cl, source("test.R")) ## do some parallel work stopCluster(cl) Unfortunately I rely on old packages :-( One can make use of past snapshots of the CRAN packages using 'checkpoints' require(checkpoint) checkpoint("2015-02-28") My question is ... how can I make use of the old packages on the Cluster