|
Confluence provides statistics about its internal caches that allow you to track the size and hit ratio of each cache and tune it for better performance (if necessary). See Performance Tuning for more information. To view the cache statistics, do the following.
About the generated numbers :
For instance to calculate Percent Used : Percent Used = Objects / Size Percent Used = 4023/5000 = 80% and to calculate Effectiveness : Effectiveness = (Hits)/(Hits + Misses) Effectiveness = 374550 / (374550 + 140460) = 73%
Cache Key MappingsIn order to find relevant cache key mappings to the friendly cache names displayed on this page, please open your <Confluence-Install>/confluence/web-inf/confluence-x.x.jar/com/atlassian/confluence/core/ConfluenceActionSupport.properties file and look for the # Friendly cache names section, for a complete list. Performance TuningIf you need to tune your application when under high usage, you may like to review this document for suggestions. RELATED TOPICS
|



Comments (1)
Oct 10
Ben Walding says:
One thing that can't be determined from the cache statistics is how important it...One thing that can't be determined from the cache statistics is how important it is to get hits on a particular cache.
A poor "effectiveness" ratio on a cache that is expensive to hold (large objects) yet easy to load (simple calculations); may be less valuable than another cache that has small elements that take a lot of calculation.
I know "Performance Tuning" does talk about some of the items to tune; but it seems like that isn't a complete list.
Add Comment