public long HSetNx(string key, string field, string value) { RedisNativeClient client = this.pool.GetRedisClient(key); return((client == null) ? 0L : client.HSetNX(key, UTF8String.ToBytes(field), UTF8String.ToBytes(value))); }