Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张磊
/
FileStorageBeego
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
d8e1f31c
authored
2013-05-13 23:30:50 +0800
by
astaxie
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
update session's key from string to interface
1 parent
719f94b3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
11 deletions
controller.go
session/sess_file.go
session/sess_mysql.go
controller.go
View file @
d8e1f31
...
...
@@ -275,21 +275,21 @@ func (c *Controller) StartSession() session.SessionStore {
return
c
.
CruSession
}
func
(
c
*
Controller
)
SetSession
(
name
string
,
value
interface
{})
{
func
(
c
*
Controller
)
SetSession
(
name
interface
{}
,
value
interface
{})
{
if
c
.
CruSession
==
nil
{
c
.
StartSession
()
}
c
.
CruSession
.
Set
(
name
,
value
)
}
func
(
c
*
Controller
)
GetSession
(
name
string
)
interface
{}
{
func
(
c
*
Controller
)
GetSession
(
name
interface
{}
)
interface
{}
{
if
c
.
CruSession
==
nil
{
c
.
StartSession
()
}
return
c
.
CruSession
.
Get
(
name
)
}
func
(
c
*
Controller
)
DelSession
(
name
string
)
{
func
(
c
*
Controller
)
DelSession
(
name
interface
{}
)
{
if
c
.
CruSession
==
nil
{
c
.
StartSession
()
}
...
...
session/sess_file.go
View file @
d8e1f31
...
...
@@ -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
{
...
...
session/sess_mysql.go
View file @
d8e1f31
...
...
@@ -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
()
{
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment