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


Golang redis.Client類代碼示例

本文整理匯總了Golang中github.com/abmm/go_sandbox/Godeps/_workspace/src/redis.Client的典型用法代碼示例。如果您正苦於以下問題:Golang Client類的具體用法?Golang Client怎麽用?Golang Client使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: doRpop

func doRpop(id string, signal chan int, client redis.Client, cnt int) {
	key := "list-R" + id
	for i := 0; i < cnt; i++ {
		client.Rpop(key)
	}
	signal <- 1
}
開發者ID:abmm,項目名稱:go_sandbox,代碼行數:7,代碼來源:gosynchclient.go

示例2: doGet

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:abmm,項目名稱:go_sandbox,代碼行數:7,代碼來源:gosynchclient.go

示例3: doDecr

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

示例4: QuitClient

func QuitClient(t *testing.T, client redis.Client) {
	// flush it
	e := client.Quit()
	if e != nil {
		t.Fatalf("on Quit - %s", e)
	}
}
開發者ID:abmm,項目名稱:go_sandbox,代碼行數:7,代碼來源:support.go

示例5: FlushClient

func FlushClient(t *testing.T, client redis.Client) {
	// flush it
	e := client.Flushdb()
	if e != nil {
		t.Fatalf("on Flushdb - %s", e)
	}
}
開發者ID:abmm,項目名稱:go_sandbox,代碼行數:7,代碼來源:support.go

示例6: doRpush

func doRpush(id string, signal chan int, client redis.Client, cnt int) {
	key := "list-R-" + id
	value := []byte("foo")
	for i := 0; i < cnt; i++ {
		client.Rpush(key, value)
	}
	signal <- 1
}
開發者ID:abmm,項目名稱:go_sandbox,代碼行數:8,代碼來源:gosynchclient.go

示例7: doSet

func doSet(id string, signal chan int, client redis.Client, cnt int) {
	key := "set-" + id
	value := []byte("foo")
	for i := 0; i < cnt; i++ {
		client.Set(key, value)
	}
	signal <- 1
}
開發者ID:abmm,項目名稱:go_sandbox,代碼行數:8,代碼來源:gosynchclient.go

示例8: doPing

func doPing(client redis.Client, cnt int) (delta time.Duration) {
	t0 := time.Now()
	for i := 0; i < cnt; i++ {
		client.Ping()
	}
	delta = time.Now().Sub(t0)
	client.Flushdb()
	return
}
開發者ID:abmm,項目名稱:go_sandbox,代碼行數:9,代碼來源:synchclient.go

示例9: doRpop

func doRpop(client redis.Client, cnt int) (delta time.Duration) {
	key := "list-R"
	t0 := time.Now()
	for i := 0; i < cnt; i++ {
		client.Lpop(key)
	}
	delta = time.Now().Sub(t0)
	return
}
開發者ID:abmm,項目名稱:go_sandbox,代碼行數:9,代碼來源:synchclient.go

示例10: doRpush

func doRpush(client redis.Client, cnt int) (delta time.Duration) {
	key := "list-R"
	value := []byte("foo")
	t0 := time.Now()
	for i := 0; i < cnt; i++ {
		client.Lpush(key, value)
	}
	delta = time.Now().Sub(t0)
	return
}
開發者ID:abmm,項目名稱:go_sandbox,代碼行數:10,代碼來源:synchclient.go

示例11: 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:abmm,項目名稱:go_sandbox,代碼行數:10,代碼來源:synchclient.go

示例12: doSadd

func doSadd(client redis.Client, cnt int) (delta time.Duration) {
	key := "set"
	value := []byte("one")
	t0 := time.Now()
	for i := 0; i < cnt; i++ {
		client.Sadd(key, value)
	}
	delta = time.Now().Sub(t0)
	client.Flushdb()
	return
}
開發者ID:abmm,項目名稱:go_sandbox,代碼行數:11,代碼來源:synchclient.go

示例13: doPing

func doPing(id string, signal chan int, client redis.Client, cnt int) {
	for i := 0; i < cnt; i++ {
		client.Ping()
	}
	signal <- 1
}
開發者ID:abmm,項目名稱:go_sandbox,代碼行數:6,代碼來源:gosynchclient.go


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