您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“redis作為cache和session的數(shù)據(jù)庫(kù)怎么用”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“redis作為cache和session的數(shù)據(jù)庫(kù)怎么用”這篇文章吧。
package main import ( _ "./routers" "fmt" "github.com/astaxie/beego" _ "github.com/astaxie/beego/cache/redis" "github.com/astaxie/beego/cache" "log" "time" ) type hashes struct { name string age int sex int } func main() { //key的作用是在鍵前面加個(gè):beego: adapter, err := cache.NewCache("redis", `{"key":"beego","conn":":6379","dbNum":"0","password":""}`) if err != nil { log.Fatal(err) } err = adapter.Put("account", "張三", 3600 * time.Second) if err != nil { log.Fatal(err) } fmt.Println(fmt.Sprintf("%s", adapter.Get("account"))) //存數(shù)組/hash的方式 err = adapter.Put("hashes", hashes{name:"dingyi", age:18, sex:1}, 3600 * time.Second) if err != nil { log.Fatal(err) } fmt.Println(fmt.Sprintf("%s", adapter.Get("hashes"))) beego.Run() }
要安裝github.com/gomodule/redigo/redis才能使用(雖然github.com/astaxie/beego/cache/redis繼承了它)
要引入的:
"github.com/astaxie/beego/cache"
_ "github.com/astaxie/beego/cache/redis"
session以redis作為存儲(chǔ)數(shù)據(jù)庫(kù)的方法:
只要很簡(jiǎn)單的做個(gè)配置就行,不需要網(wǎng)上的一大段代碼,app.conf:
sessionProvider = redis sessionProviderConfig = 127.0.0.1:6379,100,
其中127.0.0.1:6379為ip和端口,100為連接池,最后一個(gè)空缺的為密碼
再加上main方法中的:
beego.BConfig.WebConfig.Session.SessionOn = true
當(dāng)然,同上,同樣需要安裝:github.com/gomodule/redigo/redis
以上是“redis作為cache和session的數(shù)據(jù)庫(kù)怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。