Hi, I have developed a golang client for iotdb and placed it on the https://github.com/manlge/go-iotdb.
Used some source code from https://github.com/yanhongwangg/incubator-iotdb/tree/client-go For details, see: https://github.com/manlge/go-iotdb/blob/main/README.md I think we can create an official iotdb golang client repository, for example: https://github.com/apache/go-iotdb get get github.com/apache/go-iotdb package main import ( "github.com/apache/go-iotdb/client" ) var session client.Session func main() { session = client.NewSession("127.0.0.1", "6667") session.Open(false, 0) defer session.Close() //do something } Best, ----------------------------------- Mark Liu Yonyou Network Technology Co.,Ltd.
