clone(object, ...)
saveRLObject(object, file, ...)
loadRLObject(file)"RLBigData ". The object to save.clone returns a deep copy of object.
loadRLObject returns the loaded object.
saveRLObject is used for its side effects.load and save mechanism of
R is not sufficient for persistent storage of these objects. Also, assignment
via <- does not duplicate the clone makes a deep copy of an object by duplicating the underlying
files.
saveRLObject saves an object to zip file containing
a dump of the R object as well as the associated loadRLObject loads an object from a file saved by saveRLObject.
clone and saveRLObject are generic functions with methods for
"RLBigData " and "RLResult ".
If loadRLObject is called with inPlace = FALSE (the default),
a working copy of the database is made in a temporary file and the original
file left untouched. Calling with inPlace = TRUE sets the provided file as
working copy and changes made to the database are persistent. This option is
useful when working with large files in order to prevent disk usage
overhead.
saveRLObject and loadRLObject require working zip / unzip programs.