I am building an app that uses sessions to store user data. For that I use the gorilla/sessions package.
The problem I encounter is that the user data I would like to store is getting bigger and bigger as the application grows.
At some point, i get that error while saving the session : securecookie: the value is too long
Here is how I build my storage :
sessions.NewFilesystemStore("", []byte("abcdef"))
How should I do to store large session data ?
Thank you for your help