Godown 是一個 Go 語言開發的簡單、高效分佈式 Key-Value 數據庫,靈感來源 Redis,基於 Raft 協議,支持 String, Bitmap, Map, List。git
演示視頻github
使用示例數據庫
經過 Go 客戶端進行鏈接分佈式
package main import ( "fmt" "github.com/namreg/godown/client") func main() { c, err := client.New("127.0.0.1:4000") if err != nil { panic(err) } defer c.Close() res := c.Get("key") if res.Err() != nil { panic(res.Err()) } if res.IsNil() { fmt.Print("key does not exist") } else { fmt.Println(res.Int64()) } }
本文來自雲棲社區合做夥伴「開源中國」spa