You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DuckX is using zip library that only supports appending or writing new files. (unable to update a file inplace!)
So currently Save function works as follows:
make a new file
write any new files
copy the old files
delete old docx
rename new file to old file
And this process has a terrible performance on large files!
The text was updated successfully, but these errors were encountered:
zlib is an awesome library and has great features. But as you may know I want to keep duckx as minimal as possible and zlib has a large codebase. So If there was no solution, we might switch to zlib or a similar library in the future.
DuckX is using zip library that only supports appending or writing new files. (unable to update a file inplace!)
So currently Save function works as follows:
And this process has a terrible performance on large files!
The text was updated successfully, but these errors were encountered: