| 52 | return result.ToString(); |
| 53 | } |
| 54 | static int DecodeInt(const Slice& k) { |
| 55 | CHECK_EQ(4, k.size()); |
| 56 | return DecodeFixed32(k.data()); |
| 57 | } |
| 58 | |
| 59 | // Cache sharding policy affects the composition of the cache. Some test |
| 60 | // scenarios assume cache is single-sharded to keep the logic simpler. |
no test coverage detected