We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
is it possible to do prefix encode so that prefix(<<"ab">>) would be the exact prefix of prefix(<<"abc">>)? I see it could be done for lists.
prefix(<<"ab">>)
prefix(<<"abc">>)
And also prefix([term, <<"ab">>]) as a prefix for prefix([term, <<"abc">>])
prefix([term, <<"ab">>])
prefix([term, <<"abc">>])
The text was updated successfully, but these errors were encountered:
It's a problem. I did a form of prefix encoding of binaries for the kvdb database:
https://github.com/Feuerlabs/kvdb/blob/master/src/kvdb_lib.erl#L261
...but I haven't tried to integrate it into sext.
Sorry, something went wrong.
No branches or pull requests
is it possible to do prefix encode so that
prefix(<<"ab">>)
would be the exact prefix ofprefix(<<"abc">>)
? I see it could be done for lists.And also
prefix([term, <<"ab">>])
as a prefix forprefix([term, <<"abc">>])
The text was updated successfully, but these errors were encountered: