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 its XPENDING command. We want to support this flag in Spring Data Redis.
Solution
We have XPendingOptions as a collector for additional arguments for the XPENDING command. Extend XPendingOptions (for the imperative API) and PendingRecordsCommand (for the reactive API). Add tests to verify this functionality.
See also https://redis.io/commands/xpending for further information.
Steps to Fix
Hi, this is a
first-timers-onlyissue. 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-contributionissues. Thanks!Problem
Redis 6.2 introduced a new flag,
IDLEto itsXPENDINGcommand. We want to support this flag in Spring Data Redis.Solution
We have
XPendingOptionsas a collector for additional arguments for theXPENDINGcommand. 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