cteNEV0.2/client/config/saturn-optimizations.toml
2024-09-01 04:51:31 -07:00

10 lines
445 B
TOML

#(default = true) Optimizes memory allocation by caching objects to static final references.
optimizeMemoryAllocations = true
#(default = true) Reduces garbage collection (GC) heap by avoid creating unnecessary objects.
reduceGCHeap = true
#(default = true) Fixes memory leaks which takes the memory continuously.
fixMemoryLeaks = true
#(default = true) Removes duplicated threading detector locks.
removeThreadingDetectorLocks = true