1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-24 06:20:18 +00:00

update session's key from string to interface

This commit is contained in:
astaxie
2013-05-13 23:30:50 +08:00
parent 719f94b35f
commit d8e1f31cc9
3 changed files with 15 additions and 11 deletions

@ -58,11 +58,13 @@ func (fs *FileSessionStore) SessionRelease() {
}
func (fs *FileSessionStore) updatecontent() {
b, err := encodeGob(fs.values)
if err != nil {
return
if len(fs.values) > 0 {
b, err := encodeGob(fs.values)
if err != nil {
return
}
fs.f.Write(b)
}
fs.f.Write(b)
}
type FileProvider struct {

@ -55,11 +55,13 @@ func (st *MysqlSessionStore) SessionID() string {
}
func (st *MysqlSessionStore) updatemysql() {
b, err := encodeGob(st.values)
if err != nil {
return
if len(st.values) > 0 {
b, err := encodeGob(st.values)
if err != nil {
return
}
st.c.Exec("UPDATE session set `session_data`= ? where session_key=?", b, st.sid)
}
st.c.Exec("UPDATE session set `session_data`= ? where session_key=?", b, st.sid)
}
func (st *MysqlSessionStore) SessionRelease() {