-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Support COMMAND [...] commands #2922
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
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2922 +/- ##
============================================
+ Coverage 55.22% 55.37% +0.15%
- Complexity 3237 3300 +63
============================================
Files 199 205 +6
Lines 12385 12691 +306
Branches 695 710 +15
============================================
+ Hits 6839 7028 +189
- Misses 5316 5428 +112
- Partials 230 235 +5
Continue to review full report at Codecov.
|
src/main/java/redis/clients/jedis/commands/CommandCommands.java
Outdated
Show resolved
Hide resolved
Co-authored-by: M Sazzadul Hoque <[email protected]>
Co-authored-by: M Sazzadul Hoque <[email protected]>
src/main/java/redis/clients/jedis/params/CommandListFilterByParams.java
Outdated
Show resolved
Hide resolved
Co-authored-by: M Sazzadul Hoque <[email protected]>
src/main/java/redis/clients/jedis/params/CommandListFilterByParams.java
Outdated
Show resolved
Hide resolved
src/test/java/redis/clients/jedis/commands/jedis/AllKindOfValuesCommandsTest.java
Outdated
Show resolved
Hide resolved
…rams.java Co-authored-by: M Sazzadul Hoque <[email protected]>
Co-authored-by: M Sazzadul Hoque <[email protected]>
Co-authored-by: M Sazzadul Hoque <[email protected]>
https://redis.io/docs/latest/commands/command/ Adding it for completeness and as alternative to COMMAND INFO for Redis server prior 7.0.0. COMMAND (no args) is available with Redis 2.x COMMAND INFO is available since REDIS version 7.0.0 Relates to: redis#2922 Support COMMAND commands (redis#2922) commit : 3590438 Closes redis#793
* Implement command (no arg) https://redis.io/docs/latest/commands/command/ Adding it for completeness and as alternative to COMMAND INFO for Redis server prior 7.0.0. COMMAND (no args) is available with Redis 2.x COMMAND INFO is available since REDIS version 7.0.0 Relates to: #2922 Support COMMAND commands (#2922) commit : 3590438 Closes #793 * Update ControlCommandsTest.java --------- Co-authored-by: M Sazzadul Hoque <[email protected]>
Closes #2889, Closes #2890, Closes #2891, Closes #2892