ikvmnet / ikvm

A Java Virtual Machine and Bytecode-to-IL Converter for .NET
Other
1.17k stars 110 forks source link

Reduce garbage collection? #396

Closed TechInterMezzo closed 12 months ago

TechInterMezzo commented 1 year ago

Is it possible to influence how the memory allocation or garbage collection in IKVM and converted libraries work? I am calling a long running method from converted java library and it seems to do a lot of garbage collection which slows down the application.

wasabii commented 1 year ago

So, it is just .NET. so what your really looking for is how to influence the. Net runtime along those lines.

Which the MS documentation is going to cover.

TechInterMezzo commented 12 months ago

Okay, thank you.