From: Antoine Musso Date: Thu, 20 Jun 2013 18:23:30 +0000 (+0200) Subject: doc: raise doxygen lookup cache X-Git-Tag: 1.31.0-rc.0~19383 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/membres/fiche.php?a=commitdiff_plain;h=432a0cb006e0da05cf4aab9ff0c7c71fce316b4b;p=lhc%2Fweb%2Fwiklou.git 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 --- 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 #---------------------------------------------------------------------------