Start translation to brazilian portuguese

This commit is contained in:
Gustavo Kuklinski
2015-07-05 22:56:01 -03:00
parent ce5c48445f
commit 51f3d94db4
273 changed files with 16240 additions and 0 deletions

9
pt-br/06.5.md Normal file
View File

@@ -0,0 +1,9 @@
# 6.5 Summary
In this chapter, we learned about the definition and purpose of sessions and cookies, and the relationship between the two. Since Go doesn't support sessions in its standard library, we also designed our own session manager. We went through the everything from creating client sessions to deleting them. We then defined an interface called `Provider` which supports all session storage structures. In section 6.3, we implemented a memory based session manager to persist client data across sessions. In section 6.4, I show you one way of hijacking a session. Then we looked at how to prevent your own sessions from being hijacked. I hope that you now understand most of the working principles behind sessions so that you're able to safely use them in your applications.
## Links
- [Directory](preface.md)
- Previous section: [Prevent session hijacking](06.4.md)
- Next chapter: [Text files](07.0.md)