Skip to content

Latest commit

 

History

History

session

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Session Example

$ go run session/main.go

$ curl -i --cookie-jar cj --cookie cj http://localhost:8080/
You visited this page 0 times

$ curl -i --cookie-jar cj --cookie cj http://localhost:8080/
You visited this page 1 times

$ curl -i --cookie-jar cj2 --cookie cj2 http://localhost:8080/
You visited this page 0 times

$ curl -i --cookie-jar cj2 --cookie cj2 http://localhost:8080/
You visited this page 1 times

...