Skip to content

Commit 29ef3c0

Browse files
authored
fix: typo Github which should be GitHub (#124)
Co-authored-by: rick <[email protected]>
1 parent 553bcc5 commit 29ef3c0

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

README.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222

2323
# Apache IoTDB
2424

25-
Apache IoTDB (Database for Internet of Things) is an IoT native database with high performance for
26-
data management and analysis, deployable on the edge and the cloud. Due to its light-weight
27-
architecture, high performance and rich feature set together with its deep integration with
28-
Apache Hadoop, Spark and Flink, Apache IoTDB can meet the requirements of massive data storage,
25+
Apache IoTDB (Database for Internet of Things) is an IoT native database with high performance for
26+
data management and analysis, deployable on the edge and the cloud. Due to its light-weight
27+
architecture, high performance and rich feature set together with its deep integration with
28+
Apache Hadoop, Spark and Flink, Apache IoTDB can meet the requirements of massive data storage,
2929
high-speed data ingestion and complex data analysis in the IoT industrial fields.
3030

3131
# Apache IoTDB Client for Go
@@ -41,8 +41,8 @@ high-speed data ingestion and complex data analysis in the IoT industrial fields
4141

4242
This is the GoLang client of Apache IoTDB.
4343

44-
Apache IoTDB website: https://iotdb.apache.org
45-
Apache IoTDB Github: https://github.com/apache/iotdb
44+
Apache IoTDB website: <https://iotdb.apache.org>
45+
Apache IoTDB GitHub: <https://github.com/apache/iotdb>
4646

4747
## Prerequisites
4848

@@ -80,11 +80,13 @@ go run session_example.go
8080
```
8181

8282
## How to Use the SessionPool
83+
8384
SessionPool is a wrapper of a Session Set. Using SessionPool, the user do not need to consider how to reuse a session connection.
8485
If there is no available connections and the pool reaches its max size, the all methods will hang until there is a available connection.
8586
The PutBack method must be called after use
8687

8788
### New sessionPool
89+
8890
standalone
8991

9092
```golang
@@ -98,15 +100,16 @@ config := &client.PoolConfig{
98100
sessionPool = client.NewSessionPool(config, 3, 60000, 60000, false)
99101

100102
```
103+
101104
cluster or doubleLive
102105

103106
```golang
104107

105108
config := &client.PoolConfig{
106-
UserName: user,
107-
Password: password,
108-
NodeUrls: strings.Split("127.0.0.1:6667,127.0.0.1:6668", ","),
109-
}
109+
UserName: user,
110+
Password: password,
111+
NodeUrls: strings.Split("127.0.0.1:6667,127.0.0.1:6668", ","),
112+
}
110113
sessionPool = client.NewSessionPool(config, 3, 60000, 60000, false)
111114

112115
```
@@ -146,7 +149,6 @@ if err == nil {
146149

147150
```
148151

149-
150152
## Developer environment requirements for iotdb-client-go
151153

152154
### OS

README_ZH.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Apache IoTDB可以满足物联网工业领域的海量数据存储、高速数
4040
本仓库是Apache IoTDB的Go语言客户端.
4141

4242
Apache IoTDB website: https://iotdb.apache.org
43-
Apache IoTDB Github: https://github.com/apache/iotdb
43+
Apache IoTDB GitHub: https://github.com/apache/iotdb
4444

4545
## 环境准备
4646

0 commit comments

Comments
 (0)