Hi,
Good work! But I have doubts about whether we can create a new project under apache. Besides I have the following two ideas: 1. Upload the code directly to the https://github.com/apache/iotdb/go-client, at the same time, in order to reduce some useless code generated by thrift , we can put the go file generated by thrift into another warehouse. like https://github.com/iotdb/iotdb-client/go-client; 2. Or we just upload the all go client codes to https://github.com/iotdb/iotdb-client/go-client, and the other clients like python、c++ can be put here to. Thanks, --------------------------------------- Houliang Qi BONC, Ltd On 11/20/2020 11:30,Xiangwei Wei<[email protected]> wrote: Hi, Nice work!! I think we can create an official iotdb golang client repository, for example: https://github.com/apache/go-iotdb +1 for that. It will be very helpful for golang users of IoTDB. 曼灵格 <[email protected]> 于2020年11月20日周五 上午11:22写道: 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. -- Best, Xiangwei Wei
