Linux Memory Management: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 7: Line 7:
<blockquote style="background-color: #f9f9f9; border: solid thin lightgrey;">
<blockquote style="background-color: #f9f9f9; border: solid thin lightgrey;">
:[[Linux Memory Info]]
:[[Linux Memory Info]]
</blockquote>
=Java Linux Memory=
<blockquote style="background-color: #f9f9f9; border: solid thin lightgrey;">
:[[Java Linux Memory]]
</blockquote>
</blockquote>



Revision as of 00:39, 11 June 2016

Internal

Getting Information about Memory

Linux Memory Info

Java Linux Memory

Java Linux Memory

Swappinness

Swappiness is a property for the Linux kernel that changes the balance between swapping out runtime memory, as opposed to dropping pages from the system page cache. Swappiness can be set to values between 0 and 100 inclusive. A low value means the kernel will try to avoid swapping as much as possible where a higher value instead will make the kernel aggressively try to use swap space. The default value is 60, and for most desktop systems, setting it to 100 may affect the overall performance, whereas setting it lower (even 0) may improve interactivity (by decreasing response latency.)

Value vm.swappiness = 0, Strategy: The kernel will swap only to avoid an out of memory condition.

Value vm.swappiness = 60 (default)

Value vm.swappiness = 100, Strategy: The kernel will swap aggressively which may affect over all performance.