-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Add NOMKSTREAM
option to XADD
command
#2047
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
Comments
Hello @mp911de, I am new to open source contribution and wanted to contribute to this issue. So can you pls assign me the issue? Pls, specify the exact changes that need to be done(the class files, methods ) that need to be changed. |
Thanks for asking. Check out the description above. It contains all production code classes. |
Clearing assignee because of inactivity. |
@mp911de may I help ? |
Sure. I assigned the ticket to you. Let me know if there's something we can help you with. |
@mp911de I am sorry but I just notice that it was a first timer only issue and not an ideal for contributions but I already participated in such issue with spring-boot project so it is not really fair if I take it in order to respect the first timers only concept. Are you agree with me ? |
No worries. We've announced this issue for the second time after quite some time of inactivity. Since you're new to Spring Data, technically you're a first-timer here. |
Any update here? Is there something we can help you with @omlip? |
@mp911de You did well to remind me. |
It is to extend both classes and adding tests for these. |
Clearing assignee because of inactivity. |
Hi @mp911de can I take this on? |
Sure, I assigned the ticket to you. Let us know if you have any questions. |
Hi @mp911de submitted an initial PR. I based the unit tests from similar changes. |
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,
NOMKSTREAM
to itsXADD
command. We want to support this flag in Spring Data Redis.Solution
We have
XAddOptions
as a collector for additional arguments for theXADD
command. ExtendXAddOptions
(for the imperative API) andAddStreamRecord
(for the reactive API). Add tests to verify this functionality.See also https://redis.io/commands/xadd for further information.
Steps to Fix
The text was updated successfully, but these errors were encountered: