| 24 | return result.ToString(); |
| 25 | } |
| 26 | static int DecodeInt(const Slice& k) { |
| 27 | CHECK_EQ(4, k.size()); |
| 28 | return kudu::DecodeFixed32(k.data()); |
| 29 | } |
| 30 | |
| 31 | // Cache sharding policy affects the composition of the cache. Some test |
| 32 | // scenarios assume cache is single-sharded to keep the logic simpler. |
no test coverage detected