| 25 | } |
| 26 | |
| 27 | std::string getPrefix(unsigned int hashslot) |
| 28 | { |
| 29 | HASHSLOT_PREFIX_TYPE slot = HASHSLOT_PREFIX_ENDIAN((HASHSLOT_PREFIX_TYPE)hashslot); |
| 30 | char *hash_char = (char *)&slot; |
| 31 | return std::string(hash_char, HASHSLOT_PREFIX_BYTES); |
| 32 | } |
| 33 | |
| 34 | std::string prefixKey(const char *key, size_t cchKey) |
| 35 | { |
no outgoing calls
no test coverage detected