From 3e3d02e24183cf57be01090ea4df143044ea2ff8 Mon Sep 17 00:00:00 2001 From: Xikaro <0regon.end@gmail.com> Date: Sun, 11 Feb 2024 11:53:37 +0500 Subject: [PATCH] Create saturn-optimizations.toml --- config/saturn-optimizations.toml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 config/saturn-optimizations.toml diff --git a/config/saturn-optimizations.toml b/config/saturn-optimizations.toml new file mode 100644 index 000000000..071ae1d77 --- /dev/null +++ b/config/saturn-optimizations.toml @@ -0,0 +1,9 @@ +#(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 +