From b07b4d62abf563f8d482a6773b57799597571cd7 Mon Sep 17 00:00:00 2001 From: Phil Pennock Date: Fri, 23 Apr 2021 12:04:58 -0400 Subject: [PATCH] Remove some trailing white space This is to trigger a website rebuild. Doing something vaguely useful is a side-effect. While end-of-line whitespace has semantic value in Markdown, it's not doing anything when there's a paragraph break after it (AFAIK). --- faq.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/faq.md b/faq.md index 696aec2..eccfe1c 100644 --- a/faq.md +++ b/faq.md @@ -131,8 +131,8 @@ No. As of `nats-server` v0.8.0, there is no hard limit on the maximum number of ### Does NATS guarantee message delivery? -NATS Core Server, simply referred to as NATS Server, offers "at-most-once" delivery. This means messages are guaranteed to arrive intact, in order from a given publisher, but not across different publishers. NATS does everything required to remain available and provide a dial-tone. However, if a subscriber is problematic or goes offline it will not receive messages, as the basic NATS platform is a simple pub-sub transport system that offers only TCP reliability. - +NATS Core Server, simply referred to as NATS Server, offers "at-most-once" delivery. This means messages are guaranteed to arrive intact, in order from a given publisher, but not across different publishers. NATS does everything required to remain available and provide a dial-tone. However, if a subscriber is problematic or goes offline it will not receive messages, as the basic NATS platform is a simple pub-sub transport system that offers only TCP reliability. + As of NATS Server 2.2, NATS JetStream offers persistence as "at-least-once" delivery. See the [JetStream](jetstream/jetstream.md) documentation for detailed information. ### Does NATS support replay/redelivery of historical data?