KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
alibabacloud-gdb-go-sdk
★ 9
Open GitHub ↗
alibabacloud-gdb-go-sdk
Download README (.md)
Explore Similar Repositories
p5js-cheatsheet-forartists
:
A p5js cheat sheet for visual artists and graphic designers: https://livinbits.github.io/p5js-cheatsheet-forartists/
node-cxx-example
:
A modern (as of 2020) example of writing a node C++ module
notes
:
记一些零碎知识,一些库的原理简单实现,面试题
jsc370.github.io
:
Course Website
unicode-case-mapping
:
Fast mapping of char to lowercase, uppercase, or titlecase in Rust.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
alibabacloud-gdb-go-sdk
?
Download (.md)
# Gremlin Go SDK for GDB GDB Go语言客户端,参考Gremlin Java开源客户端[gremlin-driver](https://github.com/apache/tinkerpop), 基于`GraphSonV3d0`序列化协议实现,目前支持同步/异步发送查询script以及返回值解析,支持连接池和session模式。 ## Install Go ``` # download pkg curl -o golang.pkg https://dl.google.com/go/go1.13.3.darwin-amd64.pkg # install sudo open golang.pkg # setup env export GOROOT=/usr/local/go export GOPATH=$HOME/go export PATH=$GOPATH/bin:$GOROOT/bin:$PATH ``` ## Install gdbclient driver ``` go get -u github.com/aliyun/alibabacloud-gdb-go-sdk/gdbclient ``` or ``` mkdir ${GOROOT}/src/github.com/aliyun cd ${GOROOT}/src/github.com/aliyun git clone https://github.com/aliyun/alibabacloud-gdb-go-sdk.git cd ${GOROOT}/src/github.com/aliyun/alibabacloud-gdb-go-sdk go install ./gdbclient ``` ## Quick Examples SDK包含有演示程序,在`examples`目录,使用以下命令运行示例 ``` cd examples/add-vertex go run main.go -host <gdb-host> -port 8182 -username root -password <password> ```