Re: [Rd] Memory leakage from large lists

2018-07-17 Thread Tomas Kalibera
On 07/17/2018 12:56 PM, Joshua Ulrich wrote: This looks like a case of FAQ 7.42: https://cran.r-project.org/doc/FAQ/R-FAQ.html#Why-is-R-apparently-not-releasing-memory_003f Yes. A true memory leak in R would mean that repeated execution of the same code (e.g. creation and deletion of the list) w

Re: [Rd] Memory leakage from large lists

2018-07-17 Thread Joshua Ulrich
This looks like a case of FAQ 7.42: https://cran.r-project.org/doc/FAQ/R-FAQ.html#Why-is-R-apparently-not-releasing-memory_003f On Mon, Jul 16, 2018 at 2:32 PM, Daniel Raduta wrote: > Hello, > > I am experiencing a very noticeable memory leak when using large lists of > large data. The code below

[Rd] Memory leakage from large lists

2018-07-16 Thread Daniel Raduta
Hello, I am experiencing a very noticeable memory leak when using large lists of large data. The code below creates a list of matrices, yet the memory does not free up after removing that item and performing a garbage collection. Is there a something I can do to prevent this memory leak? Any help