You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But I can't do this because this data is not available and it cannot be calculated. We have in_bytes and out_bytes, but it includes both hit and miss data. We have cache_hit and cache_miss but that does not contain the amounts of data (only number of requests).
Would it be possible to add these values?
hit_in_bytes
hit_out_bytes
miss_in_bytes
miss_out_bytes
Thanks
The text was updated successfully, but these errors were encountered:
I can determine the cache hit/miss ratio in terms of number of requests:
request_hit_ratio = cache_hit / ( cache_hit + cache_miss )
What I really need is to measure cache efficiency based on amounts of data. Something like this:
data_hit_ratio = hit_out_bytes / ( hit_out_bytes + miss_out_bytes )
But I can't do this because this data is not available and it cannot be calculated. We have in_bytes and out_bytes, but it includes both hit and miss data. We have cache_hit and cache_miss but that does not contain the amounts of data (only number of requests).
Would it be possible to add these values?
Thanks
The text was updated successfully, but these errors were encountered: