-
Notifications
You must be signed in to change notification settings - Fork 525
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added method to SetOperation enum, RespCommandsInfo dictionary, and RespInfo hash set. * Added SMOVE to FastParseArrayCommand. * Added skeleton code in all places where work is needed. * Finish deciding implementation. Storage wrapper designed. * Added smove to server session. * The command doesn't break the client anymore, but it doesn't perform any operation. * SetMove now works. * Added unit tests, working on last part in list. * Finish implementation, remove attempted implementation in setobjectimpl. * Remove from transaction manager. * Style fix (Whitespace). * SetOps fixes. * Fix unit tests and returning notfound. * Small changes. * Remove using, remove set object. * SetCommands xml summary. * Minor indenting change. * Add xml tag lost in merge. * White space fix. * Added missing bracket after merge. * Locks. Allow for set member of 0 length in SMOVE and SREM. --------- Co-authored-by: Tal Zaccai <talzacc@microsoft.com>
- Loading branch information
Showing
11 changed files
with
261 additions
and
3 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,7 @@ public enum SetOperation : byte | |
SMEMBERS, | ||
SCARD, | ||
SSCAN, | ||
SMOVE, | ||
SRANDMEMBER, | ||
SISMEMBER, | ||
SUNION, | ||
|
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
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
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
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
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
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
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
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