Skip to content

Commit 7faa27b

Browse files
author
Julien Ruaux
committed
docs: Updated delivery guarantees
1 parent 6cd103a commit 7faa27b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/docs/asciidoc/_source.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,24 +16,24 @@ The {name} includes the following features:
1616
=== Delivery Guarantees
1717

1818
The {name} can be configured to ack stream messages either automatically (at-most-once delivery) or explicitly (at-least-once delivery).
19-
The default is explicit acks.
19+
The default is at-least-once delivery.
2020

21-
==== Explicit Ack (default)
21+
==== At-Least-Once
2222

2323
In this mode, each stream message is acknowledged after it has been written to the corresponding topic.
2424

2525
[source,properties]
2626
----
27-
redis.stream.ack=EXPLICIT
27+
redis.stream.delivery=at-least-once
2828
----
2929

30-
==== Automatic Ack
30+
==== At-Most-Once
3131

3232
In this mode, stream messages are acknowledged as soon as they are read.
3333

3434
[source,properties]
3535
----
36-
redis.stream.ack=AUTO
36+
redis.stream.delivery=at-most-once
3737
----
3838

3939
[[source-tasks]]

0 commit comments

Comments
 (0)