gin框架學習 redis

2021-10-10 11:03:56 字數 978 閱讀 9385

匯入包檔案:

go get github.com/gomodule/redigo/redis
建立redis處理檔案redisstore:

//全域性變數, 用來儲存redis控制代碼

var redisstore redisstore

//初始化redis

func initredisstore() (*redisstore, error )

//驗證redis redis的配置檔案redis.conf中一定要設定quirepass=password, 不然連不上

_, err = client.do("auth", config.password)

if err!=nil

//初始化全域性redis結構體

redisstore = redisstore

//下邊一行是將文字識別內容儲存到redis中

base64captcha.setcustomstore(&redisstore)

return &redisstore, nil

}//設定資料到redis中

func (rs *redisstore)set(id string, value string)

}//獲取redis中資料

func (rs *redisstore)get(id string, clear bool) string

if clear

} return string(val.(byte))

}

Gin框架初識

關於gin的具體說明與原始碼 一.安裝 命令列輸入 go get github.com gin gonic gin 安裝位置 go的環境變數中配置的全域性的lib目錄 二 基本應用 1.get 1 gin.context中的query方法 get的url傳參 func getquery contex...

Gin框架初識

一.安裝 二 基本應用 1.get 1 gin.context中的query方法 get的url傳參 二 基本應用 1.get 1 gin.context中的query方法 get的url傳參 測試 url http localhost 8088 user?userid 5 username xia...

Gin框架二 Gin基本路由 1

目錄 基本路由 路由引數 路徑全部引數 路徑單個引數 獲取url中指定的引數 get post請求 獲取url預設值的引數 get post請求 路由是自定義url位址執行指定的函式,良好的路由定義可以對seo起到很好的效果。gin框架封裝了http庫,提供了get post put delete ...