Comment on PSA: If your Jellyfin is having high memory usage, add MALLOC_TRIM_THRESHOLD_=100000 to environment
enemenemu@lemm.ee 3 weeks ago
What does it do?
Comment on PSA: If your Jellyfin is having high memory usage, add MALLOC_TRIM_THRESHOLD_=100000 to environment
enemenemu@lemm.ee 3 weeks ago
What does it do?
American_Jesus@lemm.ee 3 weeks ago
www.gnu.org/…/Memory-Allocation-Tunables.html
MALLOC_MMAP_THRESHOLD_
is an environment variable that sets the size threshold for using themmap
system call to allocate memory instead of using the heap.mmap
is used.