




go get -v github.com/go-session/redis/v3
package main
import (
"context""fmt""net/http""github.com/go-session/redis/v3""github.com/go-session/session/v3"
)
funcmain() {
session.InitManager(
session.SetStore(redis.NewRedisStore(&redis.Options{
Addr: "127.0.0.1:6379",
DB: 15,
})),
)
http.HandleFunc("/", func(w http.ResponseWriter, r*http.Request) {
store, err:=session.Start(context.Background(), w, r)
iferr!=nil {
fmt.Fprint(w, err)
return
}
store.Set("foo", "bar")
err=store.Save()
iferr!=nil {
fmt.Fprint(w, err)
return
}
http.Redirect(w, r, "/foo", 302)
})
http.HandleFunc("/foo", func(w http.ResponseWriter, r*http.Request) {
store, err:=session.Start(context.Background(), w, r)
iferr!=nil {
fmt.Fprint(w, err)
return
}
foo, ok:=store.Get("foo")
ifok {
fmt.Fprintf(w, "foo:%s", foo)
return
}
fmt.Fprint(w, "does not exist")
})
http.ListenAndServe(":8080", nil)
}http://localhost:8080