-
Notifications
You must be signed in to change notification settings - Fork 591
feat(delex): Implement DELEX Command #3317
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey thank you for your contribution, could you please add some golang test cases?
|
Thank you @PragmaTwice, I am working on them |
Co-authored-by: hulk <[email protected]>
|
@Valay17 I think we could add a digest util function in this PR, so that other PRs won't block it. cc @PragmaTwice |
|
Sure, will add it as well and also update the places where I have commented it, also a question regarding the placement of the header files xxh3.h and xxhash.h, which directory would be appropriate to place it in? |
You don't need to place the header file, these will be automatically fetched and put into your build dir: https://github.com/apache/kvrocks/blob/unstable/cmake/xxhash.cmake. You can just |
|
Perfect! Will add it accordingly and also change enum to struct |
|
Hi, could you please tell me what is the reason for my go test cases failure? |
src/common/string_util.h
Outdated
| return StringJoin( | ||
| con, [](const auto &v) -> decltype(auto) { return v; }, sep); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please revert this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
check it again.
Co-authored-by: Twice <[email protected]>
Co-authored-by: Twice <[email protected]>
|
All CI is still failing. Please ensure c++ and golang tests pass before you request for review. |
|
Confirmed 3 times that both cpp and go tests are running locally, please review, thanks |
|
For clang-tidy, it is telling me this, could guide me on how to go ahead with it: also the GO test is failing for TestClusterReset, for this one: all others are passing |
|



Fixes #3310
Implement DELEX Command
Digest function commented out