Skip to content

Commit b63ff3c

Browse files
committed
feat(stream): update README.md
1 parent e25da98 commit b63ff3c

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,15 @@ This package is for working with Redis streams for php
88

99
#### **What is implemented in the current version**
1010

11-
At the moment, the package can work with methods: **xadd**, **xread**, **xrevrange**, **xdel**.
11+
## Features
1212

13-
The package has functions for adding messages to a stream,
14-
get messages from a stream,
15-
listening to a stream as event-loop
13+
1. add messages in a stream
14+
2. delete messages from a stream
15+
3. find a message by the id of the message from a stream
16+
4. get a collection of a message from a stream
17+
5. create a group consumer for stream
18+
6. delete a group consumer from stream
19+
7. delete a consumer from a group
1620

1721
## Info
1822

@@ -167,7 +171,7 @@ $groupName = 'demo-group-1';
167171
$client->streamGroupConsumer($streamName)->destroy($groupName);
168172
```
169173

170-
_Delete a consumer from group_
174+
_Delete a consumer from a group_
171175
```php
172176
$streamName = 'test';
173177
$groupName = 'demo-group-1';

0 commit comments

Comments
 (0)