-
Notifications
You must be signed in to change notification settings - Fork 53
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
Node: add SUNION command #1919
Node: add SUNION command #1919
Conversation
a0d542b
to
57ef844
Compare
@@ -94,7 +99,7 @@ | |||
#### Fixes | |||
* Python: fixing a bug with transaction exec ([#1796](https://github.com/valkey-io/valkey-glide/pull/1796)) | |||
|
|||
## 0.4.1 (2024-02-06) | |||
## 0.4.1 (2024-06-02) |
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.
:O good catch
node/src/BaseClient.ts
Outdated
* | ||
* @remarks When in cluster mode, all `keys` must map to the same hash slot. | ||
* @param keys - The keys of the sets. | ||
* @returns A set of members which are present in at least one of the given sets. |
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.
Huh, looks like some commands have a "-" after the @returns and some don't.
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.
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.
I found that VS code can render docs with and without dashes. I don't know the standard.
Agree, that we need to align that. Can you create a task please?
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.
Yep, created a task on our board
node/src/BaseClient.ts
Outdated
* | ||
* @remarks When in cluster mode, all `keys` must map to the same hash slot. | ||
* @param keys - The keys of the sets. | ||
* @returns A set of members which are present in at least one of the given sets. |
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.
I found that VS code can render docs with and without dashes. I don't know the standard.
Agree, that we need to align that. Can you create a task please?
4f93dac
to
680f52a
Compare
Signed-off-by: aaron-congo <[email protected]>
680f52a
to
013f400
Compare
Signed-off-by: aaron-congo <[email protected]>
* Node: add SUNION command Signed-off-by: aaron-congo <[email protected]>
* Node: add SUNION command Signed-off-by: aaron-congo <[email protected]>
https://valkey.io/commands/sunion/