Brendan Duncan
Brendan Duncan
Yeah, decodeStream. There's a migration guide link in the README.
Well shoot, back to the drawing board then. Sometimes Dart drives me a bit nuts. Must be some extra file io, probably file position seeking, causing the slowdown. Strange the...
Looks like I'll need to rework the cache for the zlib decompression a bit. The file seeking it needs to do is going outside the bounds of the in-memory cache,...
Decoding a zip on dart:io platforms should be significantly faster with 4.0 now. It will use native executed zlib for decompressing zip data on platforms that support it now. The...
I'll see if I can do anything to improve that performance. Certainly PC extractors will have significant advantage there, they can get away with a lot of things Dart can't,...