-
Notifications
You must be signed in to change notification settings - Fork 517
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
feat(json): add support of JSON.RESP command #2390
Conversation
src/types/json.h
Outdated
struct ArrayOrObjectPlaceHolder {}; | ||
using VariantType = std::variant<std::string, int64_t, ArrayOrObjectPlaceHolder, bool>; | ||
template <typename T> | ||
struct JsonResp { | ||
std::vector<std::unique_ptr<JsonResp<VariantType>>> children; | ||
T value; | ||
explicit JsonResp(T value) : value(std::move(value)) {} | ||
}; |
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.
We can remove all of these types and just dump the RESP string directly.
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.
See above.
src/types/json.h
Outdated
if (path != "$") { | ||
return redis::MultiLen(query_count) + json_resps; | ||
} |
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.
seems not consistent with RedisJSON here.
json.resp a $
and json.resp a
have different behavior.
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.
we can move redis::MultiLen(query_count)
here to CommandJsonResp::Parse/Execute
.
and here we can return vector<string>
.
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.
Thank you for the reminder. It has not been modified yet. make the PR draft first
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.
It has been modified, but it is a bit unsupported. jsoncons does not support queries without $, Redis 7.0 supports it and will remove the outermost array
|
https://redis.io/docs/latest/commands/json.resp/

Local testing of multi-layer nested JSON results 6666 kvrocks and 6388 redis stack