public static func smembers(of key: RedisKey) -> RedisCommand<[RESPValue]> {
        let args = [RESPValue(from: key)]
        return .init(keyword: "SMEMBERS", arguments: args)
    }