Merge branch 'dk/raise-core-deltabasecachelimit'
The `core.deltabasecachelimit` used to default to 16 MiB , but this proved to be too small, and has been bumped to 96 MiB. * dk/raise-core-deltabasecachelimit: Bump core.deltaBaseCacheLimit to 96m
This commit is contained in:
commit
d2a274aa87
@ -489,7 +489,7 @@ core.deltaBaseCacheLimit::
|
|||||||
to avoid unpacking and decompressing frequently used base
|
to avoid unpacking and decompressing frequently used base
|
||||||
objects multiple times.
|
objects multiple times.
|
||||||
+
|
+
|
||||||
Default is 16 MiB on all platforms. This should be reasonable
|
Default is 96 MiB on all platforms. This should be reasonable
|
||||||
for all users/operating systems, except on the largest projects.
|
for all users/operating systems, except on the largest projects.
|
||||||
You probably do not need to adjust this value.
|
You probably do not need to adjust this value.
|
||||||
+
|
+
|
||||||
|
@ -37,7 +37,7 @@ int core_compression_seen;
|
|||||||
int fsync_object_files;
|
int fsync_object_files;
|
||||||
size_t packed_git_window_size = DEFAULT_PACKED_GIT_WINDOW_SIZE;
|
size_t packed_git_window_size = DEFAULT_PACKED_GIT_WINDOW_SIZE;
|
||||||
size_t packed_git_limit = DEFAULT_PACKED_GIT_LIMIT;
|
size_t packed_git_limit = DEFAULT_PACKED_GIT_LIMIT;
|
||||||
size_t delta_base_cache_limit = 16 * 1024 * 1024;
|
size_t delta_base_cache_limit = 96 * 1024 * 1024;
|
||||||
unsigned long big_file_threshold = 512 * 1024 * 1024;
|
unsigned long big_file_threshold = 512 * 1024 * 1024;
|
||||||
const char *pager_program;
|
const char *pager_program;
|
||||||
int pager_use_color = 1;
|
int pager_use_color = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user