Re: "pause" garbage collection in parallel code
Artem Tarasov via Digitalmars-d Mon, 15 Dec 2014 03:26:06 -0800
I had the same situation, and ended up with the malloc/free
option. It's also often possible to get rid of allocations in a
loop by pre-allocating thread-local buffers and reusing them
throughout (see std.parallelism.TaskPool.workerLocalStorage).
- "pause" garbage collection i... Stephan Schiffels via Digitalmars-d
- Re: "pause" garbage col... Artem Tarasov via Digitalmars-d
- Re: "pause" garbage col... bearophile via Digitalmars-d
- Re: "pause" garbage... H. S. Teoh via Digitalmars-d
- Re: "pause" garbage col... Daniel Murphy via Digitalmars-d
- Re: "pause" garbage... Stephan Schiffels via Digitalmars-d
- Re: "pause" gar... Gary Willoughby via Digitalmars-d
- Re: "pause" garbage... Stephan Schiffels via Digitalmars-d
- Re: "pause" gar... Daniel Murphy via Digitalmars-d
- Re: "pause"... Sean Kelly via Digitalmars-d
- Re: "pause" garbage col... ponce via Digitalmars-d
