-
Notifications
You must be signed in to change notification settings - Fork 992
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 support for Redis streams #606
Comments
@mp911de is the plan to move streams support forward to the 5.0.x branch? |
Hey Allen, |
@mp911de thanks for the info. Not sure if this is helpful, but I was looking for the new reactive api + streams, so cherry-picked from https://github.com/aschober/lettuce-core/tree/streams-5.x |
Awesome! Love to get early feedback, especially about the Java API design. |
Early artifacts with Redis Streams support are available: <dependency>
<groupId>biz.paluch.redis</groupId>
<artifactId>lettuce</artifactId>
<version>4.5.0.RedisStreams-SNAPSHOT</version>
</dependency>
<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories> Currently missing: Group and consumer names are |
Added |
Redis Stream support is now in place for Lettuce versions 4.5 and 5.1. Closing this ticket. |
@mp911de Thanks for adding Redis stream support in lettuce. Is there a documentation for this ? I can't find an official lettuce one. Tried looking for tests as examples too, but couldn't find any. |
@rainhacker There is Javadoc in the |
See https://github.com/redis/redis-rcp/blob/master/RCP11.md
The text was updated successfully, but these errors were encountered: