Skip to content

update for test #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nats-streaming-concepts/intro/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Introduction

NATS Streaming is a data streaming system powered by NATS, and written in the Go programming language. The executable name for the NATS Streaming server is `nats-streaming-server`. NATS Streaming embeds, extends, and interoperates seamlessly with the core NATS platform. The [NATS Streaming server](https://github.com/nats-io/nats-streaming-server) is provided as open source software under the Apache-2.0 license. Synadia actively maintains and supports the NATS Streaming server.
NATS Streaming is a data streaming system powered by NATS, and written in the Go programming language. The executable name for the NATS Streaming server is `nats-streaming-server`. NATS Streaming embeds, extends, and interoperates seamlessly with the core NATS platform. The [NATS Streaming server](https://github.com/nats-io/nats-streaming-server) is provided as Open Source Software under the Apache-2.0 license. Synadia actively maintains and supports the NATS Streaming server.

`digraph nats_streaming { graph [splines=ortho, nodesep=1]; application [shape="record", label="{Application Code | NATS Streaming Client API | NATS Client API}"]; subgraph cluster_nats_streaming_server { label="NATS Streaming Server"; labelloc=b; nats_server [shape=box, label="NATS Server"]; streaming_module [shape=box, label="Streaming Module"]; nats_server -> streaming_module [penwidth=2, dir="both"]; { rank=same nats_server streaming_module } } storage [shape=box, style="rounded", label="storage"]; application:nats -> nats_server [penwidth=2, dir="both"]; streaming_module -> storage [penwidth=2, dir="both"]; }`

Expand Down