-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need a lazy way to iterate files #73
Comments
Interesting – I never considered that. The Unrar library definitely encourages the all-upfront approach. What sort of efficiency is problematic for you (time, memory, etc.)? |
Both time and memory. |
…e's file info without accumulating it (Issue #73)
@yanex I added this in the |
@yanex Have you had a chance to take a look? |
Sorry for the late answer :( |
This has been merged for release in v2.9. Look for it in the next beta release (beta 11) |
UnrarKit currently returns info about all files in an archive as a
NSArray
. It is terribly inefficient in case if the archive contains lot of files.There should be a way to iterate files lazily using an iterator.
The text was updated successfully, but these errors were encountered: