1
0
mirror of https://github.com/taigrr/nats.docs synced 2025-01-18 04:03:23 -08:00

Merge pull request #248 from nats-io/pdp/trigger-change

Remove some trailing white space
This commit is contained in:
Ginger Collison 2021-04-28 10:41:40 -05:00 committed by GitHub
commit c7564a18c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
faq.md
View File

@ -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?