Align cache with default
Stop L0 from growing too large i.e. 127 * 4K is more than 10 times bigger than the default.
This commit is contained in:
parent
aea20de4b9
commit
fd2e0e870c
3 changed files with 12 additions and 18 deletions
|
@ -2187,21 +2187,13 @@ maybepush_ledgercache(MaxCacheSize, Cache, Penciller) ->
|
|||
|
||||
-spec maybe_withjitter(integer(), integer()) -> boolean().
|
||||
%% @doc
|
||||
%% Push down randomly, but the closer to the maximum size, the more likely a
|
||||
%% push should be
|
||||
maybe_withjitter(CacheSize, MaxCacheSize) ->
|
||||
if
|
||||
CacheSize > MaxCacheSize ->
|
||||
R = leveled_rand:uniform(7 * MaxCacheSize),
|
||||
if
|
||||
(CacheSize - MaxCacheSize) > R ->
|
||||
true;
|
||||
true ->
|
||||
false
|
||||
end;
|
||||
true ->
|
||||
false
|
||||
end.
|
||||
%% Push down randomly, but the closer to 4 * the maximum size, the more likely
|
||||
%% a push should be
|
||||
maybe_withjitter(CacheSize, MaxCacheSize) when CacheSize > MaxCacheSize ->
|
||||
R = leveled_rand:uniform(4 * MaxCacheSize),
|
||||
(CacheSize - MaxCacheSize) > R;
|
||||
maybe_withjitter(_CacheSize, _MaxCacheSize) ->
|
||||
false.
|
||||
|
||||
|
||||
-spec get_loadfun(book_state()) -> fun().
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue