I was trying to figure out if the boehm GC is slow or is it fast since it removes a lot of headaches associated with manual memory management in C, Although i could not come up with a benchmark that allocates enough memory to see the garbage collector pause.
Is there any benchmarks that prove C can still be fast while garbage collected?
I tried to allocate 100 mb worth of data using boehm but i could not find any performance issues due to my flawed benchmark since it would not free them in the time i expected it to do so.