Re: [racket-users] Re: Strange performance behavior

2020-08-08 Thread George Neuner
On 8/8/2020 9:45 AM, Matthew Flatt wrote: At Sat, 8 Aug 2020 03:32:57 -0400, George Neuner wrote: > > On 8/8/2020 1:55 AM, Sorawee Porncharoenwase wrote: > > I even saw people doing `collect-garbage` three times, just to be safe > > I guess. And yet theoretically it's not guaranteed that thin

Re: [racket-users] Re: Strange performance behavior

2020-08-08 Thread Matthew Flatt
At Sat, 8 Aug 2020 03:32:57 -0400, George Neuner wrote: > > On 8/8/2020 1:55 AM, Sorawee Porncharoenwase wrote: > > I even saw people doing `collect-garbage` three times, just to be safe > > I guess. And yet theoretically it's not guaranteed that things will be > > claimed back properly. > > > >

Re: [racket-users] Re: Strange performance behavior

2020-08-08 Thread George Neuner
On 8/8/2020 1:55 AM, Sorawee Porncharoenwase wrote: I even saw people doing `collect-garbage` three times, just to be safe I guess. And yet theoretically it's not guaranteed that things will be claimed back properly. Honestly, there should be a function that does this `collect-garbage` unti

Re: [racket-users] Re: Strange performance behavior

2020-08-07 Thread Sorawee Porncharoenwase
I even saw people doing `collect-garbage` three times, just to be safe I guess. And yet theoretically it's not guaranteed that things will be claimed back properly. Honestly, there should be a function that does this `collect-garbage` until fixpoint or something, so that we don't need to perform t