private static uint GetKeyHash(byte[] key, int count) { return(Murmur32.ComputeHash(key, 0, count)); }
private static uint GetKeyHash(string key) { return(Murmur32.ComputeHash(NoPreambleUtf8.GetBytes(key))); }