public Task <long> BitCountAsync(string key, long?start = null, long?end = null) => MultiAsync(StringCommands.BitCount(key, start, end));
 public long BitCount(string key, long?start = null, long?end = null) => Multi(StringCommands.BitCount(key, start, end));