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
0ff058bd
authored
2014-07-11 10:01:49 +0800
by
fuxiaohei
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
code style simplify
1 parent
0b1b121d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
10 deletions
cache/memory.go
cache/memory.go
View file @
0ff058b
...
...
@@ -49,15 +49,14 @@ func NewMemoryCache() *MemoryCache {
func
(
bc
*
MemoryCache
)
Get
(
name
string
)
interface
{}
{
bc
.
lock
.
RLock
()
defer
bc
.
lock
.
RUnlock
()
itm
,
ok
:=
bc
.
items
[
name
]
if
!
ok
{
return
nil
}
if
itm
,
ok
:=
bc
.
items
[
name
];
ok
{
if
(
time
.
Now
()
.
Unix
()
-
itm
.
Lastaccess
.
Unix
())
>
itm
.
expired
{
go
bc
.
Delete
(
name
)
return
nil
}
return
itm
.
val
}
return
nil
}
// Put cache to memory.
...
...
@@ -65,12 +64,11 @@ func (bc *MemoryCache) Get(name string) interface{} {
func
(
bc
*
MemoryCache
)
Put
(
name
string
,
value
interface
{},
expired
int64
)
error
{
bc
.
lock
.
Lock
()
defer
bc
.
lock
.
Unlock
()
t
:=
MemoryItem
{
bc
.
items
[
name
]
=
&
MemoryItem
{
val
:
value
,
Lastaccess
:
time
.
Now
(),
expired
:
expired
,
}
bc
.
items
[
name
]
=
&
t
return
nil
}
...
...
@@ -82,8 +80,7 @@ func (bc *MemoryCache) Delete(name string) error {
return
errors
.
New
(
"key not exist"
)
}
delete
(
bc
.
items
,
name
)
_
,
valid
:=
bc
.
items
[
name
]
if
valid
{
if
_
,
ok
:=
bc
.
items
[
name
];
ok
{
return
errors
.
New
(
"delete key error"
)
}
return
nil
...
...
@@ -214,8 +211,7 @@ func (bc *MemoryCache) item_expired(name string) bool {
if
!
ok
{
return
true
}
sec
:=
time
.
Now
()
.
Unix
()
-
itm
.
Lastaccess
.
Unix
()
if
sec
>=
itm
.
expired
{
if
time
.
Now
()
.
Unix
()
-
itm
.
Lastaccess
.
Unix
()
>=
itm
.
expired
{
delete
(
bc
.
items
,
name
)
return
true
}
...
...
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