Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
6cb0db26
Unverified
Commit
6cb0db26
authored
Sep 26, 2016
by
Jordan Liggitt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow testing LRUExpireCache with fake clock
parent
437b55bf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
3 deletions
+22
-3
lruexpirecache.go
pkg/util/cache/lruexpirecache.go
+22
-3
No files found.
pkg/util/cache/lruexpirecache.go
View file @
6cb0db26
...
@@ -23,13 +23,32 @@ import (
...
@@ -23,13 +23,32 @@ import (
"github.com/golang/groupcache/lru"
"github.com/golang/groupcache/lru"
)
)
// Clock defines an interface for obtaining the current time
type
Clock
interface
{
Now
()
time
.
Time
}
// realClock implements the Clock interface by calling time.Now()
type
realClock
struct
{}
func
(
realClock
)
Now
()
time
.
Time
{
return
time
.
Now
()
}
type
LRUExpireCache
struct
{
type
LRUExpireCache
struct
{
// clock is used to obtain the current time
clock
Clock
cache
*
lru
.
Cache
cache
*
lru
.
Cache
lock
sync
.
Mutex
lock
sync
.
Mutex
}
}
// NewLRUExpireCache creates an expiring cache with the given size
func
NewLRUExpireCache
(
maxSize
int
)
*
LRUExpireCache
{
func
NewLRUExpireCache
(
maxSize
int
)
*
LRUExpireCache
{
return
&
LRUExpireCache
{
cache
:
lru
.
New
(
maxSize
)}
return
&
LRUExpireCache
{
clock
:
realClock
{},
cache
:
lru
.
New
(
maxSize
)}
}
// NewLRUExpireCache creates an expiring cache with the given size, using the specified clock to obtain the current time
func
NewLRUExpireCacheWithClock
(
maxSize
int
,
clock
Clock
)
*
LRUExpireCache
{
return
&
LRUExpireCache
{
clock
:
clock
,
cache
:
lru
.
New
(
maxSize
)}
}
}
type
cacheEntry
struct
{
type
cacheEntry
struct
{
...
@@ -40,7 +59,7 @@ type cacheEntry struct {
...
@@ -40,7 +59,7 @@ type cacheEntry struct {
func
(
c
*
LRUExpireCache
)
Add
(
key
lru
.
Key
,
value
interface
{},
ttl
time
.
Duration
)
{
func
(
c
*
LRUExpireCache
)
Add
(
key
lru
.
Key
,
value
interface
{},
ttl
time
.
Duration
)
{
c
.
lock
.
Lock
()
c
.
lock
.
Lock
()
defer
c
.
lock
.
Unlock
()
defer
c
.
lock
.
Unlock
()
c
.
cache
.
Add
(
key
,
&
cacheEntry
{
value
,
time
.
Now
()
.
Add
(
ttl
)})
c
.
cache
.
Add
(
key
,
&
cacheEntry
{
value
,
c
.
clock
.
Now
()
.
Add
(
ttl
)})
// Remove entry from cache after ttl.
// Remove entry from cache after ttl.
time
.
AfterFunc
(
ttl
,
func
()
{
c
.
remove
(
key
)
})
time
.
AfterFunc
(
ttl
,
func
()
{
c
.
remove
(
key
)
})
}
}
...
@@ -52,7 +71,7 @@ func (c *LRUExpireCache) Get(key lru.Key) (interface{}, bool) {
...
@@ -52,7 +71,7 @@ func (c *LRUExpireCache) Get(key lru.Key) (interface{}, bool) {
if
!
ok
{
if
!
ok
{
return
nil
,
false
return
nil
,
false
}
}
if
time
.
Now
()
.
After
(
e
.
(
*
cacheEntry
)
.
expireTime
)
{
if
c
.
clock
.
Now
()
.
After
(
e
.
(
*
cacheEntry
)
.
expireTime
)
{
go
c
.
remove
(
key
)
go
c
.
remove
(
key
)
return
nil
,
false
return
nil
,
false
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment