-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Add IDLE
argument to XPENDING
command
#2046
Comments
@mp911de i am a newbie to open source contributions, are you fine, if i start working on this issue. |
Thanks for reaching out. Feel free to work on this issue, I assigned it to you. Let us know if you have any questions. |
@mp911de i have started working on this implementation, i just wanted to ask few questions, before i finalize the approach.
i notice that there a methods defined in both
DefaultStringRedisConnection, DefaultedRedisConnection, JedisClusterStreamCommands , JedisStreamCommands and LettuceStreamCommands. |
Idle can only be specified when there's a If you're interested, you can take a look at |
Any update here? Is there something we can help you with @SivaTharun? |
@mp911de i made few changes to support Are the changes for supporting Also i see that the latest version of jedis and redis client jars, which are already being used with in the project, supports the so there will be changes to the |
Hi, is this issue still needs to be done? Can I work on it? |
It seems that no one has participated since the last activity a year ago, so I implemented it and created this PR. Please take a look. |
Original pull request spring-projects#3116 Closes spring-projects#2046 Signed-off-by: Jeonggyu Choi <[email protected]>
Original pull request spring-projects#3116 Closes spring-projects#2046 Signed-off-by: Jeonggyu Choi <[email protected]>
Hi, this is a
first-timers-only
issue. This means we've worked to make it more legible to folks who either haven't contributed to our codebase before or even folks who haven't contributed to open source before.If that's you, we're interested in helping you take the first step and can answer questions and help you out as you do. Note that we're especially interested in contributions from people from groups underrepresented in free and open source software!
If you have contributed before, consider leaving this one for someone new, and looking through our general
ideal-for-contribution
issues. Thanks!Problem
Redis 6.2 introduced a new flag,
IDLE
to itsXPENDING
command. We want to support this flag in Spring Data Redis.Solution
We have
XPendingOptions
as a collector for additional arguments for theXPENDING
command. ExtendXPendingOptions
(for the imperative API) andPendingRecordsCommand
(for the reactive API). Add tests to verify this functionality.See also https://redis.io/commands/xpending for further information.
Steps to Fix
The text was updated successfully, but these errors were encountered: