Skip to content

Commit 94b3890

Browse files
authored
Improve docs on the ingress module (#63)
1 parent 663c41b commit 94b3890

File tree

8 files changed

+1025
-597
lines changed

8 files changed

+1025
-597
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
This library makes it easy to insert data into [QuestDB](https://questdb.io/).
55

66
This client library implements the [InfluxDB Line Protocol](
7-
https://questdb.io/docs/reference/api/ilp/overview/) (ILP) over TCP or HTTP.
7+
https://questdb.io/docs/reference/api/ilp/overview/) (ILP) over HTTP and TCP.
88

99
* Implementation is in Rust, with no additional
1010
[run-time or link-time dependencies](doc/BUILD.md#pre-requisites-and-dependencies)
@@ -24,7 +24,7 @@ streaming use cases).
2424
| Protocol | Record Insertion Reporting | Data Insertion Performance |
2525
| -------- | -------------------------- | -------------------------- |
2626
| **[ILP/HTTP](https://questdb.io/docs/reference/api/ilp/overview/)** | Transaction-level (on flush) | **Excellent** |
27-
| [ILP/TCP](https://questdb.io/docs/reference/api/ilp/overview/)| Errors in logs; Disconnect on error | **Best** (tolerates higher latency networks) |
27+
| [ILP/TCP](https://questdb.io/docs/reference/api/ilp/overview/)| Errors in logs; Disconnect on error | **Best** (tolerates higher-latency networks) |
2828
| [CSV Upload via HTTP](https://questdb.io/docs/reference/api/rest/#imp---import-data) | Configurable | Very Good |
2929
| [PostgreSQL](https://questdb.io/docs/reference/api/postgres/) | Transaction-level | Good |
3030

@@ -33,7 +33,7 @@ See the [flush troubleshooting](doc/CONSIDERATIONS.md) docs for more details on
3333
how to debug ILP/TCP.
3434

3535
For an overview and code examples, see the
36-
[ILP page of the developer docs](https://questdb.io/docs/develop/insert-data/#influxdb-line-protocol).
36+
[InfluxDB Line Protocol page of the developer docs](https://questdb.io/docs/develop/insert-data/#influxdb-line-protocol).
3737

3838
To understand the protocol in more depth, consult the
3939
[protocol reference docs](https://questdb.io/docs/reference/api/ilp/overview/).

0 commit comments

Comments
 (0)