-
Notifications
You must be signed in to change notification settings - Fork 6.4k
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
Multiget LDB Followup #12332
Multiget LDB Followup #12332
Conversation
@jaykorean has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
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.
LGTM, thanks!
values[i].ToString(is_value_hex_).c_str()); | ||
} else if (statuses[i].IsNotFound()) { | ||
fprintf(stdout, "Key not found: %s\n", | ||
(is_key_hex_ ? StringToHex(keys_[i]) : keys_[i]).c_str()); |
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.
In the below else
block, the failed
flag is supposed to be set to true, right?
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.
Yup. If you expand the lines hidden by git, It's there (in line 2942)
7ee31ed
to
8268c90
Compare
@jaykorean has updated the pull request. You must reimport the pull request before landing. |
@jaykorean has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
@jaykorean merged this pull request in 0088f77. |
Summary
Following up @jowlyzhang 's comment in #12283 .
ARG_TTL
from help which is not relevant tomulti_get
commandGet
andMultiGet
and updated the unit test,ldb_test.py
multi_get
commandTest Plan
Unit Test
Manual Run