Godown—Go開發的分散式Key-Value資料庫

技術小能手發表於2018-11-07

Godown 是一個 Go 語言開發的簡單、高效分散式 Key-Value 資料庫,靈感來源 Redis,基於 Raft 協議,支援 String, Bitmap, Map, List。

演示視訊

26112814_zht5.png

使用示例

通過 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())
	}
}

本文來自雲棲社群合作伙伴“開源中國”

本文作者:局長

原文連結



相關文章