我正在尝试为我的Gorilla会话安装Redistore后端,但是我一直收到未定义的错误。这是我确实运行过的documentation程序包,但是程序包导入错误表明它已导入但未使用。
错误:
未定义:NewRediStore
代码:
package main
import (
...
"github.com/gorilla/sessions"
"gopkg.in/boj/redistore.v1"
)
func main() {
// Fetch new store.
store, err := NewRediStore(10, "tcp", ":6379", "", []byte("secret-key"))
if err != nil {
panic(err)
}
defer store.Close()
...
}