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

Missing support for dictionary compression (unstable, non-public API) #256

Open
yihuang opened this issue Nov 21, 2022 · 6 comments
Open

Comments

@yihuang
Copy link

yihuang commented Nov 21, 2022

missing binding to the LZ4F_compressFrame_usingCDict.

@jmerdich
Copy link

I'm looking into implementing this but hit an upstream roadblock: lz4/lz4#791. The frame dictionary APIs are still considered unstable (despite their age) and are only available with statically linked copies of lz4. Today, python-lz4 supports both but prefers the dynamically-linked system copy of lz4 if available.

We can fail at runtime still if we are using a dynamically linked copy, but how lz4 was built into the package is pretty opaque to the user.

@jonathanunderwood
Copy link
Member

Yup - we won't be adding this to the python bindings until the API is stable and public.

@jmerdich
Copy link

@jonathanunderwood-- do you think having this as experimental only and forcing static links for experimental builds is a good middle ground? This seems like it only isn't stable because there hasn't been a major lz4 release in the last three years.

@jonathanunderwood
Copy link
Member

@jonathanunderwood-- do you think having this as experimental only and forcing static links for experimental builds is a good middle ground? This seems like it only isn't stable because there hasn't been a major lz4 release in the last three years.

I'd consider it if someone submitted a PR and the added complexity in setup.py etc wasn't high and the submitter was prepared to stick around and support it. I have very limited bandwidth to support this package, and this really isn't a high priority compared to the other stuff that is outstanding (fixing/rewriting the frame bindings, Aarch64 builds, type hinting). But honestly, before that, I'd need to see convincing numbers demonstrating it's actually worth it.

@jonathanunderwood
Copy link
Member

Note also issue #236 means we'll be making changes to setup.py and how compilers and flags are set up.

@jonathanunderwood jonathanunderwood changed the title Don't support dictionary compression Missing support for dictionary compression (unstable, non-public API) Dec 31, 2022
@danielhrisca
Copy link

Looks like dictionaries are now fully enabled in the LZ4 https://github.com/lz4/lz4/releases/tag/v1.10.0

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

4 participants