From 432a0cb006e0da05cf4aab9ff0c7c71fce316b4b Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Thu, 20 Jun 2013 20:23:30 +0200 Subject: [PATCH] doc: raise doxygen lookup cache At the end of a run, doxygen emits a notice regarding the cache lookup size being too small. This cache is used to find symbols given their name which would speed up processing a bit. The notice before this patch: lookup cache used 65536/65536 hits=2258467 misses=112595 Note: based on cache misses the ideal setting for LOOKUP_CACHE_SIZE is 1 at the cost of higher memory usage. And after: lookup cache used 104632/131072 hits=2131285 misses=105434 That is 7% less miss, not that much but still. Note how the cache is well filled (80%). Change-Id: I0b97e8c5581a63c44a382891f8f1fc8d60975e80 --- maintenance/Doxyfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/Doxyfile b/maintenance/Doxyfile index 773504c586..b8c53e3417 100644 --- a/maintenance/Doxyfile +++ b/maintenance/Doxyfile @@ -82,7 +82,7 @@ INLINE_GROUPED_CLASSES = NO INLINE_SIMPLE_STRUCTS = NO TYPEDEF_HIDES_STRUCT = NO SYMBOL_CACHE_SIZE = 0 -LOOKUP_CACHE_SIZE = 0 +LOOKUP_CACHE_SIZE = 1 #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- -- 2.20.1