Disclaimer:
Many of you pointed to a duplicated post, I was aware of it but I believe it's not a fair duplicate as some way of saving/loading might be different for data frames and lists. For instance the packages fst
and feather
work on data frames but not on lists.
My question is specific to lists.
I have a ~50M element list and I'd like to save it to a file to share it among different R sessions.
I know the native ways of saving in R (save
, save.image
, saveRDS
). My point was : would you still use these functions on big scale data?
What is the fastest way to save it and read it back? (any R readable format would be alright).