I'm new in programming with Perl.
I have a 8GB zip file that contains data files and a metadata file. The goal is read content of metadata file to compare with data filenames in the zip.
Current implementation is using IO::Uncompress::Unzip, and it take too long (~15min) to read the metadata file ~60KB.
I have create a PoC script using Archive::Zip::MemberRead, extract information from the same file and the execution is really fast (in seconds).
My concern is there any limitation with using Archive::Zip in my scenario.