Are there some Go libraries for sessions?
Using Python/Django there wasn't any problem.
I am new to Go and I haven't found anything about it. So, are there general sessions support for Go? Are there some frameworks with sessions support? (It seems web.go has no sessions support, doesn't it?)
Gorilla's sessions package is the one I use and I guess the best choice for most projects. Gorilla also offers a lower-level package, securecookie.
Other options include seshcookie and authcookie.