Improve compression #18
Labels
No labels
Compat/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: stephenseo/SimpleArchiver#18
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
SimpleArchiver incurs a large amount of overhead-data when each file is compressed individually. One idea is to concatenate files into chunks and compress the chunks for less overhead. Perhaps a default minimum size per chunk could be 1 MiB, but some tuning/tweaking may be required to optimize it.
https://git.seodisparate.com/stephenseo/SimpleArchiver/src/branch/issue_18_improve_compression will track the progress of this feature until it is merged.
As of
c71f4f45c7
basic extraction is implemented. Uncompressed chunked files can be extracted. Extracting symlinks is implemented but untested. What's left is to test extracting symlinks, extract compressed chunked files, and to create archive files in the new format.This feature is about done, just needs some testing to verify it works correctly.
There were some errors de/compressing archives when using large files. The code has been updated to be more robust and some testing indicates that it works now. Still will test more.