I have the following cache stats: Memory hits as % of hit requests: 5min: 51.7% Disk hits as % of hit requests: 5min: 31.8% Storage Mem capacity: 100.0% used, 0.0% free i.e., cache miss in mem = 100 - 51.7 = 48.3% overal hit % = 51.7 + 31.8 = 83.5% 1. Since memory is now 100% used, how do I know if there is a cache miss in mem 48.3%, how many % of them will trigger a LRU in memory cache? 2. Similarly, if my disk is 100% used, how do I know the LRU statistics Thanks.