public static func zremrangebyscore(from key: RedisKey, withMinimumScoreOf minScore: RedisZScoreBound) -> RedisCommand<Int> {
        return .zremrangebyscore(from: key, withScoresBetween: (minScore, .inclusive(.infinity)))
    }