mirror of
https://github.com/taigrr/nats.docs
synced 2025-01-18 04:03:23 -08:00
updated gnatsd to nats-server
This commit is contained in:
@@ -6,7 +6,7 @@ Fundamentally NATS is about publishing and listening for messages. Both of these
|
||||
digraph g {
|
||||
rankdir=LR
|
||||
publisher [shape=box, style="rounded", label="PUB time.us"];
|
||||
subject [shape=circle, label="gnatsd"];
|
||||
subject [shape=circle, fixedsize="true", width="1.0", height="1.0", label="nats-server"];
|
||||
sub1 [shape=box, style="rounded", label="SUB time.us"];
|
||||
sub2 [shape=box, style="rounded", label="SUB time.us"];
|
||||
|
||||
@@ -27,7 +27,7 @@ time.us
|
||||
time.us.east
|
||||
time.us.east.atlanta
|
||||
time.eu.east
|
||||
time.us.east.warsaw
|
||||
time.eu.warsaw
|
||||
```
|
||||
|
||||
to logically group related subjects.
|
||||
@@ -44,7 +44,7 @@ The first wildcard is `*` which will match a single token. For example, if an ap
|
||||
digraph g {
|
||||
rankdir=LR
|
||||
publisher [shape=box, style="rounded", label="PUB time.us.east"];
|
||||
subject [shape=circle, label="gnatsd"];
|
||||
subject [shape=circle, fixedsize="true", width="1.0", height="1.0", label="nats-server"];
|
||||
sub1 [shape=box, style="rounded", label="SUB time.*.east"];
|
||||
sub2 [shape=box, style="rounded", label="SUB time.us.east"];
|
||||
|
||||
@@ -62,7 +62,7 @@ The second wildcard is `>` which will match one or more tokens, and can only app
|
||||
digraph g {
|
||||
rankdir=LR
|
||||
publisher [shape=box, style="rounded", label="PUB time.us.east.atlanta"];
|
||||
subject [shape=circle, label="gnatsd"];
|
||||
subject [shape=circle, fixedsize="true", width="1.0", height="1.0", label="nats-server"];
|
||||
sub1 [shape=box, style="rounded", label="SUB time.us.east.atlanta"];
|
||||
sub2 [shape=box, style="rounded", label="SUB time.us.*"];
|
||||
sub3 [shape=box, style="rounded", label="SUB time.us.>"];
|
||||
|
||||
Reference in New Issue
Block a user