hi is it possible to turn off all automated memory...
# kotlin-native
t
hi is it possible to turn off all automated memory management for Kotlin/Native? if yes, how? is there a convenient way to do it?
o
Kotlin as a language needs automated memory mgmt, what is your use case?
* Depending on application needs it may select to suspend GC for certain phases of * its lifetime, and resume it later on, or just completely turn it off, if GC pauses * are less desirable than cyclical garbage leaks.
s
From the same file:
Konan relies upon reference counting for object management, however it could not collect cyclical garbage, so we perform periodic garbage collection.
t
so, the answer is sadly no thank you