commit f0f17247c9c6cf1f6f2adcf1f1e279b03403b6ea from: Stefan Sperling date: Thu Dec 01 04:00:36 2022 UTC reduce max amount of tags stored in object cache to avoid high memory usage commit - 3b81530f7d0ffe60024f054f6d87ff8dd558e3fe commit + f0f17247c9c6cf1f6f2adcf1f1e279b03403b6ea blob - 07661321d0cf3745053ed8ace0d4e6bacf83d615 blob + a63584085e5b3f8e5781fe8fa8fa8825e9d8778e --- lib/object_cache.c +++ lib/object_cache.c @@ -42,7 +42,7 @@ #define GOT_OBJECT_CACHE_SIZE_OBJ 256 #define GOT_OBJECT_CACHE_SIZE_TREE 256 #define GOT_OBJECT_CACHE_SIZE_COMMIT 64 -#define GOT_OBJECT_CACHE_SIZE_TAG 2048 +#define GOT_OBJECT_CACHE_SIZE_TAG 256 #define GOT_OBJECT_CACHE_SIZE_RAW 16 #define GOT_OBJECT_CACHE_MAX_ELEM_SIZE 1048576 /* 1 MB */