-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,25 @@ | ||
# NATS | ||
|
||
NATS is a lightweight, high-performance messaging system designed for cloud native applications, IoT messaging, and microservices | ||
architectures. | ||
|
||
## Key Features | ||
|
||
- Simple: Text-based protocol with straightforward publish-subscribe semantics | ||
- Fast: Written in Go, capable of millions of messages per second | ||
- Lightweight: Small footprint, minimal dependencies | ||
- Cloud Native: Built for modern distributed systems | ||
|
||
## Core Concepts | ||
|
||
- Publishers: Send messages to subjects | ||
- Subscribers: Receive messages from subjects | ||
- Subjects: Named channels for message routing | ||
- Queue Groups: Load balance messages across subscribers | ||
|
||
## Message Patterns | ||
|
||
- Publish/Subscribe: One-to-many message distribution | ||
- Request/Reply: Synchronous communication | ||
- Queue Groups: Load balanced message processing | ||
- Stream Processing: Persistent message streams (via NATS Streaming/JetStream) |