Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change -cache_commit_increment to uint_size to accept prefixes #3506

Merged
merged 1 commit into from
Apr 4, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/optionsx.h
Original file line number Diff line number Diff line change
Expand Up @@ -1180,7 +1180,7 @@ DYNAMIC_OPTION(bool, pause_via_loop,
/* heap_commit_increment may be adjusted by adjust_defaults_for_page_size(). */
OPTION_DEFAULT(uint_size, heap_commit_increment, 4*1024, "heap commit increment")
/* cache_commit_increment may be adjusted by adjust_defaults_for_page_size(). */
OPTION_DEFAULT(uint, cache_commit_increment, 4*1024, "cache commit increment")
OPTION_DEFAULT(uint_size, cache_commit_increment, 4*1024, "cache commit increment")

/* cache capacity control
* FIXME: these are external for now while we study the right way to
Expand Down