Skip to content
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

Primary performance improvement wanted #244

Open
genyez opened this issue Apr 30, 2024 · 3 comments
Open

Primary performance improvement wanted #244

genyez opened this issue Apr 30, 2024 · 3 comments

Comments

@genyez
Copy link

genyez commented Apr 30, 2024

I‘ve seen many improvable points, such as:

  • don't copy data from/to string/vector by using emplace_back
  • multi-threaded xml w/r
  • multi-threaded com/decompression
  • incremental save (base on dirty mark for example)

Any one interested in those?

Besides where is the original repo of zippy? I searched but end up with a nimble library. Any clue would be appreciated!

@Rozhdestvenskii
Copy link

Rozhdestvenskii commented May 15, 2024

Besides where is the original repo of zippy?

probably https://github.com/Shinmera/zippy

@genyez
Copy link
Author

genyez commented May 21, 2024

Besides where is the original repo of zippy?

probably https://github.com/Shinmera/zippy

Thanks for replying, but it seems to be a lisp repo, not a C one.

@troldal
Copy link
Owner

troldal commented May 24, 2024

The Zippy library has been renamed KZip and can be found here:

https://github.com/troldal/KZip

It's basically just a wrapper around miniz:

https://github.com/richgel999/miniz

Regarding your suggestions for multithreading, that would be great features to have, but really depends on the underlying libraries (pugixml and miniz). None of them are currently multithreaded. With pugixml, reading the XML DOM tree can be done in parallel (provided it's not being altered at the same time), but writing is a different matter.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants