-
Notifications
You must be signed in to change notification settings - Fork 69
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
Go: Implement Set commands #2373
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
janhavigupta007
requested changes
Oct 1, 2024
ravisi21
approved these changes
Oct 1, 2024
umit
force-pushed
the
go/set-commands-implementation
branch
2 times, most recently
from
October 1, 2024 17:28
30b4e6c
to
351e1fd
Compare
umit
force-pushed
the
go/set-commands-implementation
branch
3 times, most recently
from
October 4, 2024 05:55
9a1735c
to
e5e44f2
Compare
umit
force-pushed
the
go/set-commands-implementation
branch
from
October 7, 2024 17:15
e5e44f2
to
7e949bb
Compare
Yury-Fridlyand
approved these changes
Oct 8, 2024
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.
Shall we add a separate type for Sets
as it is handled separately in GO.
MikeMwita
reviewed
Oct 9, 2024
eifrah-aws
reviewed
Oct 10, 2024
umit
force-pushed
the
go/set-commands-implementation
branch
from
October 10, 2024 16:20
7e949bb
to
c6b21fc
Compare
MikeMwita
approved these changes
Oct 10, 2024
Add SetCommands interface with methods: SAdd, SRem, SMembers, SCard, SIsMember, SDiff, SDiffStore, SInter, SInterCard, SInterCardLimit, SRandMember, SPop - Include method documentation and usage examples - Add unit tests for all new methods Signed-off-by: umit <[email protected]> # Conflicts: # go/api/base_client.go # Conflicts: # go/api/base_client.go # go/integTest/shared_commands_test.go
Signed-off-by: umit <[email protected]>
Signed-off-by: umit <[email protected]>
Signed-off-by: umit <[email protected]>
Signed-off-by: umit <[email protected]>
Signed-off-by: umit <[email protected]>
umit
force-pushed
the
go/set-commands-implementation
branch
from
October 11, 2024 15:53
c6b21fc
to
83be607
Compare
umit
force-pushed
the
go/set-commands-implementation
branch
from
October 12, 2024 18:29
83be607
to
f60d85c
Compare
janhavigupta007
approved these changes
Oct 14, 2024
Signed-off-by: umit <[email protected]>
umit
force-pushed
the
go/set-commands-implementation
branch
from
October 14, 2024 14:23
f60d85c
to
8001ee8
Compare
avifenesh
pushed a commit
to avifenesh/valkey-glide
that referenced
this pull request
Oct 18, 2024
Go: Implement Set commands Add SetCommands interface with methods: SAdd, SRem, SMembers, SCard, SIsMember, SDiff, SDiffStore, SInter, SInterCard, SInterCardLimit, SRandMember, SPop - Include method documentation and usage examples - Add unit tests for all new methods Signed-off-by: umit <[email protected]>
BoazBD
pushed a commit
to BoazBD/valkey-glide
that referenced
this pull request
Oct 21, 2024
Go: Implement Set commands Add SetCommands interface with methods: SAdd, SRem, SMembers, SCard, SIsMember, SDiff, SDiffStore, SInter, SInterCard, SInterCardLimit, SRandMember, SPop - Include method documentation and usage examples - Add unit tests for all new methods Signed-off-by: umit <[email protected]>
BoazBD
pushed a commit
to BoazBD/valkey-glide
that referenced
this pull request
Oct 21, 2024
Go: Implement Set commands Add SetCommands interface with methods: SAdd, SRem, SMembers, SCard, SIsMember, SDiff, SDiffStore, SInter, SInterCard, SInterCardLimit, SRandMember, SPop - Include method documentation and usage examples - Add unit tests for all new methods Signed-off-by: umit <[email protected]>
Muhammad-awawdi-amazon
pushed a commit
that referenced
this pull request
Oct 23, 2024
Go: Implement Set commands Add SetCommands interface with methods: SAdd, SRem, SMembers, SCard, SIsMember, SDiff, SDiffStore, SInter, SInterCard, SInterCardLimit, SRandMember, SPop - Include method documentation and usage examples - Add unit tests for all new methods Signed-off-by: umit <[email protected]>
acarbonetto
pushed a commit
that referenced
this pull request
Nov 5, 2024
Go: Implement Set commands Add SetCommands interface with methods: SAdd, SRem, SMembers, SCard, SIsMember, SDiff, SDiffStore, SInter, SInterCard, SInterCardLimit, SRandMember, SPop - Include method documentation and usage examples - Add unit tests for all new methods Signed-off-by: umit <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR introduces the SetCommands interface to the Valkey client, implementing essential set operations.
New interface methods:
Key changes: