summaryrefslogtreecommitdiff
path: root/src/cache.c
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2013-04-22 17:31:47 +0200
committerVicent Marti <tanoku@gmail.com>2013-04-22 17:31:47 +0200
commit920cbc9846c526958f6b4a7f914bdde2da1d34ec (patch)
treef86b3e175183edd4b34da98daa35e54b0eb4e295 /src/cache.c
parenta14163a79d644f0fd2856b083f355f2df19f6bdd (diff)
downloadlibgit2-920cbc9846c526958f6b4a7f914bdde2da1d34ec.tar.gz
cache: More aggressive default
Diffstat (limited to 'src/cache.c')
-rw-r--r--src/cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cache.c b/src/cache.c
index 4b26d4351..b462af408 100644
--- a/src/cache.c
+++ b/src/cache.c
@@ -18,7 +18,7 @@
GIT__USE_OIDMAP
bool git_cache__enabled = true;
-int64_t git_cache__max_storage = (4 * 1024 * 1024);
+int64_t git_cache__max_storage = (256 * 1024 * 1024);
static git_atomic64 git_cache__current_storage = {0};