-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Python: add RANDOMKEY command (#1701)
* Python: add RANDOMKEY command * Enable randomkey() test for that redis-rs is fixed Signed-off-by: Andrew Carbonetto <andrew.carbonetto@improving.com> * NOP push Signed-off-by: Andrew Carbonetto <andrew.carbonetto@improving.com> --------- Signed-off-by: Andrew Carbonetto <andrew.carbonetto@improving.com> Co-authored-by: Andrew Carbonetto <andrew.carbonetto@improving.com>
- Loading branch information
1 parent
b231a72
commit 1df349b
Showing
9 changed files
with
99 additions
and
5 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
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
Submodule redis-rs
updated
18 files
+1 −1 | .github/workflows/rust.yml | |
+33 −0 | Cargo.lock | |
+1 −1 | Makefile | |
+4 −0 | redis/Cargo.toml | |
+16 −5 | redis/src/cluster.rs | |
+1 −1 | redis/src/cluster_async/connections_container.rs | |
+397 −104 | redis/src/cluster_async/mod.rs | |
+3 −3 | redis/src/cluster_routing.rs | |
+72 −2 | redis/src/cluster_slotmap.rs | |
+709 −0 | redis/src/commands/cluster_scan.rs | |
+9 −0 | redis/src/commands/mod.rs | |
+6 −0 | redis/src/lib.rs | |
+5 −0 | redis/src/types.rs | |
+320 −0 | redis/tests/support/cluster.rs | |
+38 −28 | redis/tests/support/mock_cluster.rs | |
+2 −2 | redis/tests/support/mod.rs | |
+329 −57 | redis/tests/test_cluster_async.rs | |
+825 −0 | redis/tests/test_cluster_scan.rs |