Thread overview
Easy way to monitor gc activity?
Nov 12, 2014
Tofu Ninja
Nov 12, 2014
thedeemon
Nov 12, 2014
Tofu Ninja
Nov 12, 2014
Israel
November 12, 2014
Basicly what the title said.

What is an easy way to monitor gc activity?
I am finding it hard to know when and where the gc is running and how much.

Preferably I would like a way to do it in app so I can make adjustments based on gc load.

Also I would prefer to not have to recompile the runtime if I can avoid it.

-Tofu
November 12, 2014
On Wednesday, 12 November 2014 at 10:43:32 UTC, Tofu Ninja wrote:
> What is an easy way to monitor gc activity?

Here's mine:
https://bitbucket.org/infognition/dstuff/src/
A little module that allows you to track all GC allocations.
November 12, 2014
On Wednesday, 12 November 2014 at 11:29:01 UTC, thedeemon wrote:
> On Wednesday, 12 November 2014 at 10:43:32 UTC, Tofu Ninja wrote:
>> What is an easy way to monitor gc activity?
>
> Here's mine:
> https://bitbucket.org/infognition/dstuff/src/
> A little module that allows you to track all GC allocations.

This is exactly what I needed... you... are... awesome
Thanks man

-Tofu
November 12, 2014
On Wednesday, 12 November 2014 at 11:29:01 UTC, thedeemon wrote:
> On Wednesday, 12 November 2014 at 10:43:32 UTC, Tofu Ninja wrote:
>> What is an easy way to monitor gc activity?
>
> Here's mine:
> https://bitbucket.org/infognition/dstuff/src/
> A little module that allows you to track all GC allocations.

Wow, im bookmarking this.