mirror of
https://gitee.com/johng/gf
synced 2026-06-06 02:25:47 +08:00
redis
GoFrame gredis.Adapter implements using go-redis.
Installation
go get -u github.com/gogf/gf/contrib/nosql/redis/v2
Commonly imported at top of main.go:
package main
import (
_ "github.com/gogf/gf/contrib/nosql/redis/v2"
// Other imported packages.
)
func main() {
// Main logics.
}