Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ This library provides:

![Redis stream client - LBS](./imgs/redis_stream_client_lbs.png)

## Limitations

**Redis consumer groups on a single stream are not supported.** Each data stream is exclusively owned by one consumer at a time. If you need multiple consumers reading from the same stream in parallel, use `XREADGROUP` / `XAUTOCLAIM` directly via [go-redis](https://github.com/redis/go-redis). See [this issue](https://github.com/handcoding-labs/redis-stream-client-go/issues/99) for planned support.

## Quick Start

```go
Expand Down
Loading