-
Are there any best practices or limitations I should know about when using |
Beta Was this translation helpful? Give feedback.
Answered by
jkaflik
Jul 26, 2024
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ribtoks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@ribtoks
clickhouse-go
is not thread-safe guaranteed, however, there shouldn't be any consequence from using it across multiple goroutines.This is true as long you don't reuse single
Batch
(clickhouse-go
API) or singleTx
(database/sql
) across multiple goroutines.