Nebula Go¶
Nebula Go is a Golang client for connecting to and managing the NebulaGraph database.
Prerequisites¶
You have installed Golang 1.13 or later versions.
Compatibility with NebulaGraph¶
NebulaGraph version | Nebula Go version |
---|---|
3.1.3 | 3.1.0 |
2.6.x | 2.6.0 |
2.0.x | 2.0.0-GA |
Download Nebula Go¶
-
(Recommended) To install a specific version of Nebula Go, use the Git option
--branch
to specify the branch. For example, to install v3.1.0, run the following command:$ git clone --branch release-3.1 https://github.com/vesoft-inc/nebula-go.git
-
To install the daily development version, run the following command to download the source code from the
master
branch:$ git clone https://github.com/vesoft-inc/nebula-go.git
Install or update¶
Run the following command to install or update Nebula Go:
$ go get -u -v github.com/vesoft-inc/nebula-go/v3@v3.1.0
Core of the example code¶
This section shows the core of the example code. For all the code, see graph_client_basic_example and graph_client_goroutines_example.
Last update:
February 19, 2024