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