public long IncrBy(string key, long increment) { if (string.IsNullOrEmpty(key)) { throw new ArgumentNullException(nameof(key)); } return(_pool.IncrBy(_instance + key, increment)); }