真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

利用go怎么對redis集合進行操作-創(chuàng)新互聯(lián)

今天就跟大家聊聊有關(guān)利用go怎么對redis集合進行操作,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

在新鄉(xiāng)縣等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供網(wǎng)站設(shè)計、做網(wǎng)站 網(wǎng)站設(shè)計制作按需網(wǎng)站策劃,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站設(shè)計,網(wǎng)絡(luò)營銷推廣,外貿(mào)營銷網(wǎng)站建設(shè),新鄉(xiāng)縣網(wǎng)站建設(shè)費用合理。
package main
import (
 "fmt"
 "github.com/garyburd/redigo/redis"
)
func main() {
 // 連接redis數(shù)據(jù)庫,指定數(shù)據(jù)庫的IP和端口
 conn, err := redis.Dial("tcp", "36.99.16.197:6379")
 if err != nil {
 fmt.Println("Connect to redis error", err)
 return
 } else {
 fmt.Println("Connect to redis ok.")
 }
 // 函數(shù)退出時關(guān)閉連接
 defer conn.Close()
 // 執(zhí)行一個有序zset插入
 _, err = conn.Do("ZADD", "mykey", "INCR", 1, "robot1")
 if err != nil {
 fmt.Println("redis set failed:", err)
 }
 // 再執(zhí)行一個有序zset插入
 _, err = conn.Do("ZADD", "mykey", "INCR", 1, "robot2")
 if err != nil {
 fmt.Println("redis set failed:", err)
 }
 // 讀取指定zset
 user_map, err := redis.StringMap(conn.Do("ZRANGE", "mykey", 0, 10, "withscores"))
 if err != nil {
 fmt.Println("redis get failed:", err)
 } else {
 fmt.Printf("Get mykey: %v \n", user_map)
 }
 for user := range user_map {
 fmt.Printf("user name: %v %v\n", user, user_map[user])
 }
}

輸出:

Connect to redis ok.
Get mykey: map[robot1:1 robot2:1]
user name: robot1 1
user name: robot2 1

補充:Redis中zset的golang實現(xiàn)

zset

初衷是在不用Redis的前提下實現(xiàn)排行榜

項目地址https://github.com/liyiheng/zset

Installation

go get -u github.com/liyiheng/zset

Usage

Removed RWLock in the SortedSet.

Just implement it yourself if you need.

s := zset.New()
// add data
s.Set(66, 1001, "test1")
s.Set(77, 1002, "test2")
s.Set(88, 1003, "test3")
s.Set(100, 1004, "liyiheng")
s.Set(99, 1005, "test4")
s.Set(44, 1006, "test5")
// update data
s.Set(44, 1001, "test1")
// get rank by id
rank, score, extra := s.GetRank(1004, false)
// get data by rank
id, score, extra := s.GetDataByRank(0, true)
// get data by id
dat, ok := s.GetData(1001)
// delete data by id
s.Delete(1001)

Benchmark

go test -test.bench=".*"
BenchmarkSortedSet_Add-4   1000000  4121 ns/op
BenchmarkSortedSet_GetRank-4  500000  3592 ns/op
BenchmarkSortedSet_GetDataByRank-4 2000000  667 ns/op
PASS
ok zset 11.365s

看完上述內(nèi)容,你們對利用go怎么對redis集合進行操作有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。


當(dāng)前題目:利用go怎么對redis集合進行操作-創(chuàng)新互聯(lián)
文章鏈接:http://weahome.cn/article/jdopo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部