Changeset 86

Show
Ignore:
Timestamp:
07/01/05 08:56:57 (4 years ago)
Author:
jtv
Message:

Made default settings more aggressive (possible thanks to new state machine)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/memory.c

    r81 r86  
    3232 
    3333/// Lower bound to percentage of memory/swap space kept available 
    34 static int lower_freelimit=10; 
     34static int lower_freelimit=20; 
    3535/// Upper bound to percentage of memory/swap space kept available 
    3636static int upper_freelimit=60; 
    3737 
    3838/// Configuration item: target percentage of available space after adding swap  
    39 static int freetarget=25
     39static int freetarget=30
    4040 
    4141/// Configuration item: what percentage of buffer space do we consider "free"? 
    42 static int buffer_meekness=20; 
     42static int buffer_meekness=30; 
    4343 
    4444// TODO: Make this adaptive based on actual cache usage, to avoid thrashing?