public string[] HMGet(string key, params string[] fields) { if (!this.IsValidFields(fields)) { return(null); } RedisNativeClient client = this.pool.GetRedisClient(key); return((client == null) ? null : UTF8String.ToStringArray(client.HMGet(key, UTF8String.ToBytesArray(fields)))); }