[R] Can saved R object .RData files be loaded by more than one R sessions for read only purpose?

Jens Oehlschlägel jens.oehlschlaegel at truecluster.com
Mon Aug 2 18:14:53 CEST 2010


Xiaobo.Gu,

Shared reading should be fine. 
Shared writing is also possible, but it is important to understand that .RData files do only contain the meta-data of ff objects, not the ff data itself. 

This means you cannot have multiple processes updating the same .RData metadata
but you can have multiple processes writing simultaneously to the same ff datafile.

(it is your responsibility to avoid conflicts and to make sure you do not suffer problems with delayed cache refreshs as can happen on network drives) 

HTH

Jens Oehlschlägel



More information about the R-help mailing list