-
Hello, I am a bit puzzled about the operation ratio outlined in the configuration file. Does this suggest that cachebench would execute both 'get' and 'set' operations concurrently at the stated ratio? Is there a possibility to load the key-value pairs first in cachelib and then run the 'get/set' (update) tests? It seems to me that if we run the operations simultaneously, the Hit Ratio may not be accurate. Have I overlooked any potential configurations that might be affecting this? `===JSON Config=== Welcome to OSS version of cachebench == Throughput for == |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Also, here is an uncommon number here: Evict Attempts: 439,372 Success: -4198434145486952.50% |
Beta Was this translation helpful? Give feedback.
-
Hi @Mi5sssss We don't support the feature for warming up the cache. However, there are two relevant features that I can think of
For weird success rate number, this is caused by the fact that we are not taking the stat numbers used for the computation here atomically. Let me fix this soon, but I think you can just interpret it as 100%. |
Beta Was this translation helpful? Give feedback.
Hi @Mi5sssss
We don't support the feature for warming up the cache. However, there are two relevant features that I can think of
For weird success rate number, this is caused by the fact that we are not taking the stat numbers used for the computation here atomi…