I have a question about a function attribut from the ff package. I have an ff object in a specific directory I want to load. This is what I am using:
setwd(~/Documents/Data)
ffload("Object", overwrite=TRUE)
With OVERWRITE=TRUE, a copy of the object will be saved in a tmp folder and the object will be load from this directory:
[1] "tmp/Rtmpsj1b2f/clone11876c2c0949.ff"
But if you don't want a copy of your object you need to put FALSE to overwrite. If it is the first time you load your ff object it will create a copy in a tmp folder even if overwrite=FALSE! Then I deleted the copy, and re-loaded the object for the second time, I had the following message and no copy:
Warning :
In FUN("Obs_zone_212_19700801_19750731"[[1L]], ...) :
did not overwrite object 'Obs_zone_212_19700801_19750731'
The problem is that I am working with a lot of big files and I don't want to create copies! What can I do ?