|
|
|
|
|
by captainmuon
3176 days ago
|
|
Memory usage is often a bad indicator of bloat. Especially GC languages like Java and JS will just go ahead and allocate a lot of memory from the OS without using all of it all the time. If you sum the "used" memory of all apps, it will often be more than the available RAM, even though there is no swapping going on. The OS memory management is really clever nowadays. Actually, an app not using much memory may be sacrificing performance by not using a caching opportunity. Unfortunately, apps coordinating how much memory to best use is an unsolved problem, as far as I know. |
|