44This library makes it easy to insert data into [ QuestDB] ( https://questdb.io/ ) .
55
66This 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
3333how to debug ILP/TCP.
3434
3535For 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
3838To understand the protocol in more depth, consult the
3939[ protocol reference docs] ( https://questdb.io/docs/reference/api/ilp/overview/ ) .
0 commit comments