File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 22
33Golang client for QuestDB's Influx Line Protocol over TCP.
44
5- Tested against QuestDB 6.4 and newer versions.
5+ Features:
6+ * Context-aware API.
7+ * Optimized for batch writes.
8+ * Supports TLS encryption and [ ILP authentication] ( https://questdb.io/docs/reference/api/ilp/authenticate ) .
9+ * Tested against QuestDB 6.4 and newer versions.
610
711## Usage
812
Original file line number Diff line number Diff line change @@ -58,6 +58,9 @@ const (
5858
5959// LineSender allows you to insert rows into QuestDB by sending ILP
6060// messages.
61+ //
62+ // Each sender corresponds to a single TCP connection. A sender
63+ // should not be called concurrently by multiple goroutines.
6164type LineSender struct {
6265address string
6366tlsMode tlsMode
You can’t perform that action at this time.
0 commit comments