[help] flatten list of lists, in dynamic branching, without loading everything into memory #1307
Replies: 1 comment 4 replies
-
I had a look into how this works in I don't think you even can partially load objects from an RDS file. I'm trying to think of a workaround. For now I would still suggest working with these large objects as files, so that the list of large objects is just a character vector that you can easily manipulate in memory, and then load the paths only as needed. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Help
Description
(in pseudocode) I have such a target
some upstream dynamic target process produces this target -> a huge list of lists
And I want to flatten this list without loading this whole thing into memory, ideally.
or more elegantly
Without doing a redundant
Which I assume will load everything into memory and become unmanageable, plus it would duplicate I guess the whole target on the hard-drive for not good reason.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions