Session & Cookie
# NOTE: Redis settings:
...
REDIS_SESSION_DB=0
...
# NOTE: Session setting:
# SESSION_TTL minutes
SESSION_KEY=gfly
SESSION_TTL=30
SESSION_ID=gflyid
Review Session settings
at document Configuration
Set session
c.SetSession("time", time.Now().String())
Get session
time := c.GetSession("time")
Cookie name gflyid
for session.
Set cookie
c.SetCookie("hello", "One")
Get cookie
hello := c.GetCookie("hello")