mirror of
git://git.9front.org/plan9front/plan9front
synced 2025-01-12 11:10:06 +00:00
git/*: reduce object cache size
the cache is too big; it doesn't measurably improve performance for most uses, and will run out of memory on smaller machines. 128 megs ought to be enough for everybody.
This commit is contained in:
parent
a99b016643
commit
22cf5562fa
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ Objset objcache;
|
|||
Object *lruhead;
|
||||
Object *lrutail;
|
||||
vlong ncache;
|
||||
vlong cachemax = 1024*MiB;
|
||||
vlong cachemax = 128*MiB;
|
||||
Packf *packf;
|
||||
int npackf;
|
||||
int openpacks;
|
||||
|
|
Loading…
Reference in a new issue