當前位置: 首頁>>代碼示例>>Golang>>正文


Golang Client.Get方法代碼示例

本文整理匯總了Golang中redis.Client.Get方法的典型用法代碼示例。如果您正苦於以下問題:Golang Client.Get方法的具體用法?Golang Client.Get怎麽用?Golang Client.Get使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在redis.Client的用法示例。


在下文中一共展示了Client.Get方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1:

func doGet (id string, signal chan int, client redis.Client, cnt int)  {
	key := "set-" + id;
	for i:=0;i<cnt;i++ { 
		client.Get(key);
	}
	signal <- 1;
}
開發者ID:evangineer,項目名稱:Go-Redis,代碼行數:7,代碼來源:gosynchclient.go

示例2: doGet

func doGet(client redis.Client, cnt int) (delta int64) {
	key := "ctr"
	t0 := time.Nanoseconds()
	for i := 0; i < cnt; i++ {
		client.Get(key)
	}
	delta = time.Nanoseconds() - t0
	client.Flushdb()
	return
}
開發者ID:evangineer,項目名稱:Go-Redis,代碼行數:10,代碼來源:synchclient.go

示例3: doGet

func doGet(client redis.Client, cnt int) (delta time.Duration) {
	key := "ctr"
	t0 := time.Now()
	for i := 0; i < cnt; i++ {
		client.Get(key)
	}
	delta = time.Now().Sub(t0)
	client.Flushdb()
	return
}
開發者ID:roolez,項目名稱:Go-Redis,代碼行數:10,代碼來源:synchclient.go

示例4: main

func main() {
	//init:connects to the default port 6379
	var client, client2 redis.Client

	//strings:set get del
	client.Set("a", []byte("hello"))
	client2.Set("b", []byte("world"))
	word, err := client.Get("a")
	if err == nil {
		fmt.Println("client get ", string(word))
	} else {
		fmt.Println("client get error ", err)
	}

	//lists
	data := []string{"a", "b", "c", "d", "e"}
	for _, v := range data {
		client.Rpush("list", []byte(v))
	}
	ret, err := client.Lrange("list", 0, -1)
	if err == nil {
		for index, val := range ret {
			fmt.Println(index, ":", string(val))
		}
	}
	client.Del("list")

	//pub/sub
	sub := make(chan string, 1)
	sub <- "channel"

	messages := make(chan redis.Message, 0)
	go client.Subscribe(sub, nil, nil, nil, messages)

	time.Sleep(10 * 1000 * 1000)
	client2.Publish("channel", []byte("cool"))
	msg := <-messages
	fmt.Println("received from:", msg.Channel, " message:", string(msg.Message))

	close(sub)
	close(messages)
}
開發者ID:Krazylee,項目名稱:pubsub-bench,代碼行數:42,代碼來源:example.go

示例5: dump_db

func dump_db(port int, db int, output io.Writer) {
	var client redis.Client

	if port != 0 {
		client.Addr = "127.0.0.1:" + strconv.Itoa(port)
	}

	if db != 0 {
		client.Db = db
	}

	fmt.Fprintf(output, "FLUSHDB\r\n")

	keys, err := client.Keys("*")

	if err != nil {
		println("Redis-dump failed", err.Error())
		return
	}

	for _, key := range keys {
		typ, _ := client.Type(key)

		if typ == "string" {
			data, _ := client.Get(key)
			fmt.Fprintf(output, "SET %s %d\r\n%s\r\n", key, len(data), data)
		} else if typ == "list" {
			llen, _ := client.Llen(key)
			for i := 0; i < llen; i++ {
				data, _ := client.Lindex(key, i)
				fmt.Fprintf(output, "RPUSH %s %d\r\n%s\r\n", key, len(data), data)
			}
		} else if typ == "set" {
			members, _ := client.Smembers(key)
			for _, data := range members {
				fmt.Fprintf(output, "SADD %s %d\r\n%s\r\n", key, len(data), data)
			}
		}
	}

}
開發者ID:xinuxZ,項目名稱:goredis,代碼行數:41,代碼來源:redis-dump.go


注:本文中的redis.Client.Get方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。