Skip to content

Commit 265701c

Browse files
committed
chore(docs): improve docs
1 parent 6740316 commit 265701c

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
Golang 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

sender.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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.
6164
type LineSender struct {
6265
address string
6366
tlsMode tlsMode

0 commit comments

Comments
 (0)