Changeset 86
- Timestamp:
- 07/01/05 08:56:57 (4 years ago)
- Files:
-
- src/memory.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
src/memory.c
r81 r86 32 32 33 33 /// Lower bound to percentage of memory/swap space kept available 34 static int lower_freelimit= 10;34 static int lower_freelimit=20; 35 35 /// Upper bound to percentage of memory/swap space kept available 36 36 static int upper_freelimit=60; 37 37 38 38 /// Configuration item: target percentage of available space after adding swap 39 static int freetarget= 25;39 static int freetarget=30; 40 40 41 41 /// Configuration item: what percentage of buffer space do we consider "free"? 42 static int buffer_meekness= 20;42 static int buffer_meekness=30; 43 43 44 44 // TODO: Make this adaptive based on actual cache usage, to avoid thrashing?
