diff options
author | Björn-Egil Dahlberg <[email protected]> | 2013-02-08 15:32:56 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2013-02-11 14:25:21 +0100 |
commit | 468710f6de0fd48224b6e688b075c619106d1131 (patch) | |
tree | 72f21a0db9bb759ba6df1e11dde5ccd419aa04de /erts/emulator/sys/common/erl_mseg.h | |
parent | 5bce881fa8bb7c61f27697054e8e9408fa87ca2d (diff) | |
download | otp-468710f6de0fd48224b6e688b075c619106d1131.tar.gz otp-468710f6de0fd48224b6e688b075c619106d1131.tar.bz2 otp-468710f6de0fd48224b6e688b075c619106d1131.zip |
erts: Increase default #cached segments to 10
Previous default was 5.
Diffstat (limited to 'erts/emulator/sys/common/erl_mseg.h')
-rw-r--r-- | erts/emulator/sys/common/erl_mseg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/sys/common/erl_mseg.h b/erts/emulator/sys/common/erl_mseg.h index 64b68fb2e6..3cab9e18da 100644 --- a/erts/emulator/sys/common/erl_mseg.h +++ b/erts/emulator/sys/common/erl_mseg.h @@ -74,7 +74,7 @@ typedef struct { { \ 4*1024*1024, /* amcbf: Absolute max cache bad fit */ \ 20, /* rmcbf: Relative max cache bad fit */ \ - 5, /* mcs: Max cache size */ \ + 10, /* mcs: Max cache size */ \ 1000 /* cci: Cache check interval */ \ } |