GetWithExpirationUpdate method and items are converted to pointers
This commit is contained in:
parent
46f4078530
commit
ce46365517
103
cache.go
103
cache.go
|
@ -13,10 +13,14 @@ import (
|
||||||
type Item struct {
|
type Item struct {
|
||||||
Object interface{}
|
Object interface{}
|
||||||
Expiration int64
|
Expiration int64
|
||||||
|
mu sync.RWMutex
|
||||||
}
|
}
|
||||||
|
|
||||||
// Returns true if the item has expired.
|
// Returns true if the item has expired.
|
||||||
func (item Item) Expired() bool {
|
func (item *Item) Expired() bool {
|
||||||
|
item.mu.RLock()
|
||||||
|
defer item.mu.RUnlock()
|
||||||
|
|
||||||
if item.Expiration == 0 {
|
if item.Expiration == 0 {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
@ -39,7 +43,7 @@ type Cache struct {
|
||||||
|
|
||||||
type cache struct {
|
type cache struct {
|
||||||
defaultExpiration time.Duration
|
defaultExpiration time.Duration
|
||||||
items map[string]Item
|
items map[string]*Item
|
||||||
mu sync.RWMutex
|
mu sync.RWMutex
|
||||||
onEvicted func(string, interface{})
|
onEvicted func(string, interface{})
|
||||||
janitor *janitor
|
janitor *janitor
|
||||||
|
@ -58,7 +62,7 @@ func (c *cache) Set(k string, x interface{}, d time.Duration) {
|
||||||
e = time.Now().Add(d).UnixNano()
|
e = time.Now().Add(d).UnixNano()
|
||||||
}
|
}
|
||||||
c.mu.Lock()
|
c.mu.Lock()
|
||||||
c.items[k] = Item{
|
c.items[k] = &Item{
|
||||||
Object: x,
|
Object: x,
|
||||||
Expiration: e,
|
Expiration: e,
|
||||||
}
|
}
|
||||||
|
@ -75,7 +79,7 @@ func (c *cache) set(k string, x interface{}, d time.Duration) {
|
||||||
if d > 0 {
|
if d > 0 {
|
||||||
e = time.Now().Add(d).UnixNano()
|
e = time.Now().Add(d).UnixNano()
|
||||||
}
|
}
|
||||||
c.items[k] = Item{
|
c.items[k] = &Item{
|
||||||
Object: x,
|
Object: x,
|
||||||
Expiration: e,
|
Expiration: e,
|
||||||
}
|
}
|
||||||
|
@ -119,19 +123,18 @@ func (c *cache) Replace(k string, x interface{}, d time.Duration) error {
|
||||||
// whether the key was found.
|
// whether the key was found.
|
||||||
func (c *cache) Get(k string) (interface{}, bool) {
|
func (c *cache) Get(k string) (interface{}, bool) {
|
||||||
c.mu.RLock()
|
c.mu.RLock()
|
||||||
|
defer c.mu.RUnlock()
|
||||||
|
|
||||||
// "Inlining" of get and Expired
|
// "Inlining" of get and Expired
|
||||||
item, found := c.items[k]
|
item, found := c.items[k]
|
||||||
if !found {
|
if !found {
|
||||||
c.mu.RUnlock()
|
|
||||||
return nil, false
|
return nil, false
|
||||||
}
|
}
|
||||||
if item.Expiration > 0 {
|
|
||||||
if time.Now().UnixNano() > item.Expiration {
|
if item.Expired() {
|
||||||
c.mu.RUnlock()
|
return nil, false
|
||||||
return nil, false
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
c.mu.RUnlock()
|
|
||||||
return item.Object, true
|
return item.Object, true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -141,41 +144,75 @@ func (c *cache) Get(k string) (interface{}, bool) {
|
||||||
// whether the key was found.
|
// whether the key was found.
|
||||||
func (c *cache) GetWithExpiration(k string) (interface{}, time.Time, bool) {
|
func (c *cache) GetWithExpiration(k string) (interface{}, time.Time, bool) {
|
||||||
c.mu.RLock()
|
c.mu.RLock()
|
||||||
|
defer c.mu.RUnlock()
|
||||||
|
|
||||||
// "Inlining" of get and Expired
|
// "Inlining" of get and Expired
|
||||||
item, found := c.items[k]
|
item, found := c.items[k]
|
||||||
if !found {
|
if !found {
|
||||||
c.mu.RUnlock()
|
|
||||||
return nil, time.Time{}, false
|
return nil, time.Time{}, false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
item.mu.RLock()
|
||||||
|
defer item.mu.RUnlock()
|
||||||
|
|
||||||
if item.Expiration > 0 {
|
if item.Expiration > 0 {
|
||||||
if time.Now().UnixNano() > item.Expiration {
|
if time.Now().UnixNano() > item.Expiration {
|
||||||
c.mu.RUnlock()
|
|
||||||
return nil, time.Time{}, false
|
return nil, time.Time{}, false
|
||||||
}
|
}
|
||||||
|
|
||||||
// Return the item and the expiration time
|
// Return the item and the expiration time
|
||||||
c.mu.RUnlock()
|
|
||||||
return item.Object, time.Unix(0, item.Expiration), true
|
return item.Object, time.Unix(0, item.Expiration), true
|
||||||
}
|
}
|
||||||
|
|
||||||
// If expiration <= 0 (i.e. no expiration time set) then return the item
|
// If expiration <= 0 (i.e. no expiration time set) then return the item
|
||||||
// and a zeroed time.Time
|
// and a zeroed time.Time
|
||||||
c.mu.RUnlock()
|
|
||||||
return item.Object, time.Time{}, true
|
return item.Object, time.Time{}, true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetWithExpirationUpdate returns item and updates its cache expiration time
|
||||||
|
// It returns the item or nil, the expiration time if one is set (if the item
|
||||||
|
// never expires a zero value for time.Time is returned), and a bool indicating
|
||||||
|
// whether the key was found.
|
||||||
|
func (c *cache) GetWithExpirationUpdate(k string, d time.Duration) (interface{}, bool) {
|
||||||
|
c.mu.RLock()
|
||||||
|
defer c.mu.RUnlock()
|
||||||
|
|
||||||
|
item, found := c.items[k]
|
||||||
|
if !found {
|
||||||
|
return nil, false
|
||||||
|
}
|
||||||
|
|
||||||
|
// Don't call item.Expired() here since
|
||||||
|
// we write lock item.Expiration
|
||||||
|
item.mu.Lock()
|
||||||
|
defer item.mu.Unlock()
|
||||||
|
|
||||||
|
if item.Expiration > 0 {
|
||||||
|
if time.Now().UnixNano() > item.Expiration {
|
||||||
|
return nil, false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if d == DefaultExpiration {
|
||||||
|
d = c.defaultExpiration
|
||||||
|
}
|
||||||
|
if d > 0 {
|
||||||
|
c.items[k].Expiration = time.Now().Add(d).UnixNano()
|
||||||
|
}
|
||||||
|
|
||||||
|
return item.Object, true
|
||||||
|
}
|
||||||
|
|
||||||
func (c *cache) get(k string) (interface{}, bool) {
|
func (c *cache) get(k string) (interface{}, bool) {
|
||||||
item, found := c.items[k]
|
item, found := c.items[k]
|
||||||
if !found {
|
if !found {
|
||||||
return nil, false
|
return nil, false
|
||||||
}
|
}
|
||||||
// "Inlining" of Expired
|
// "Inlining" of Expired
|
||||||
if item.Expiration > 0 {
|
if item.Expired() {
|
||||||
if time.Now().UnixNano() > item.Expiration {
|
return nil, false
|
||||||
return nil, false
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return item.Object, true
|
return item.Object, true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1001,7 +1038,7 @@ func (c *cache) SaveFile(fname string) error {
|
||||||
// documentation for NewFrom().)
|
// documentation for NewFrom().)
|
||||||
func (c *cache) Load(r io.Reader) error {
|
func (c *cache) Load(r io.Reader) error {
|
||||||
dec := gob.NewDecoder(r)
|
dec := gob.NewDecoder(r)
|
||||||
items := map[string]Item{}
|
items := map[string]*Item{}
|
||||||
err := dec.Decode(&items)
|
err := dec.Decode(&items)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
c.mu.Lock()
|
c.mu.Lock()
|
||||||
|
@ -1035,19 +1072,19 @@ func (c *cache) LoadFile(fname string) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Copies all unexpired items in the cache into a new map and returns it.
|
// Copies all unexpired items in the cache into a new map and returns it.
|
||||||
func (c *cache) Items() map[string]Item {
|
func (c *cache) Items() map[string]*Item {
|
||||||
c.mu.RLock()
|
c.mu.RLock()
|
||||||
defer c.mu.RUnlock()
|
defer c.mu.RUnlock()
|
||||||
m := make(map[string]Item, len(c.items))
|
m := make(map[string]*Item, len(c.items))
|
||||||
now := time.Now().UnixNano()
|
|
||||||
for k, v := range c.items {
|
for k, v := range c.items {
|
||||||
// "Inlining" of Expired
|
// "Inlining" of Expired
|
||||||
if v.Expiration > 0 {
|
if v.Expired() {
|
||||||
if now > v.Expiration {
|
continue
|
||||||
continue
|
}
|
||||||
}
|
m[k] = &Item{
|
||||||
|
Object: v.Object,
|
||||||
|
Expiration: v.Expiration,
|
||||||
}
|
}
|
||||||
m[k] = v
|
|
||||||
}
|
}
|
||||||
return m
|
return m
|
||||||
}
|
}
|
||||||
|
@ -1064,7 +1101,7 @@ func (c *cache) ItemCount() int {
|
||||||
// Delete all items from the cache.
|
// Delete all items from the cache.
|
||||||
func (c *cache) Flush() {
|
func (c *cache) Flush() {
|
||||||
c.mu.Lock()
|
c.mu.Lock()
|
||||||
c.items = map[string]Item{}
|
c.items = map[string]*Item{}
|
||||||
c.mu.Unlock()
|
c.mu.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1099,7 +1136,7 @@ func runJanitor(c *cache, ci time.Duration) {
|
||||||
go j.Run(c)
|
go j.Run(c)
|
||||||
}
|
}
|
||||||
|
|
||||||
func newCache(de time.Duration, m map[string]Item) *cache {
|
func newCache(de time.Duration, m map[string]*Item) *cache {
|
||||||
if de == 0 {
|
if de == 0 {
|
||||||
de = -1
|
de = -1
|
||||||
}
|
}
|
||||||
|
@ -1110,7 +1147,7 @@ func newCache(de time.Duration, m map[string]Item) *cache {
|
||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
func newCacheWithJanitor(de time.Duration, ci time.Duration, m map[string]Item) *Cache {
|
func newCacheWithJanitor(de time.Duration, ci time.Duration, m map[string]*Item) *Cache {
|
||||||
c := newCache(de, m)
|
c := newCache(de, m)
|
||||||
// This trick ensures that the janitor goroutine (which--granted it
|
// This trick ensures that the janitor goroutine (which--granted it
|
||||||
// was enabled--is running DeleteExpired on c forever) does not keep
|
// was enabled--is running DeleteExpired on c forever) does not keep
|
||||||
|
@ -1131,7 +1168,7 @@ func newCacheWithJanitor(de time.Duration, ci time.Duration, m map[string]Item)
|
||||||
// manually. If the cleanup interval is less than one, expired items are not
|
// manually. If the cleanup interval is less than one, expired items are not
|
||||||
// deleted from the cache before calling c.DeleteExpired().
|
// deleted from the cache before calling c.DeleteExpired().
|
||||||
func New(defaultExpiration, cleanupInterval time.Duration) *Cache {
|
func New(defaultExpiration, cleanupInterval time.Duration) *Cache {
|
||||||
items := make(map[string]Item)
|
items := make(map[string]*Item)
|
||||||
return newCacheWithJanitor(defaultExpiration, cleanupInterval, items)
|
return newCacheWithJanitor(defaultExpiration, cleanupInterval, items)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1156,6 +1193,6 @@ func New(defaultExpiration, cleanupInterval time.Duration) *Cache {
|
||||||
// gob.Register() the individual types stored in the cache before encoding a
|
// gob.Register() the individual types stored in the cache before encoding a
|
||||||
// map retrieved with c.Items(), and to register those same types before
|
// map retrieved with c.Items(), and to register those same types before
|
||||||
// decoding a blob containing an items map.
|
// decoding a blob containing an items map.
|
||||||
func NewFrom(defaultExpiration, cleanupInterval time.Duration, items map[string]Item) *Cache {
|
func NewFrom(defaultExpiration, cleanupInterval time.Duration, items map[string]*Item) *Cache {
|
||||||
return newCacheWithJanitor(defaultExpiration, cleanupInterval, items)
|
return newCacheWithJanitor(defaultExpiration, cleanupInterval, items)
|
||||||
}
|
}
|
||||||
|
|
|
@ -107,12 +107,12 @@ func TestCacheTimes(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestNewFrom(t *testing.T) {
|
func TestNewFrom(t *testing.T) {
|
||||||
m := map[string]Item{
|
m := map[string]*Item{
|
||||||
"a": Item{
|
"a": &Item{
|
||||||
Object: 1,
|
Object: 1,
|
||||||
Expiration: 0,
|
Expiration: 0,
|
||||||
},
|
},
|
||||||
"b": Item{
|
"b": &Item{
|
||||||
Object: 2,
|
Object: 2,
|
||||||
Expiration: 0,
|
Expiration: 0,
|
||||||
},
|
},
|
||||||
|
@ -1769,3 +1769,28 @@ func TestGetWithExpiration(t *testing.T) {
|
||||||
t.Error("expiration for e is in the past")
|
t.Error("expiration for e is in the past")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestGetWithExpirationUpdate(t *testing.T) {
|
||||||
|
var found bool
|
||||||
|
|
||||||
|
tc := New(50*time.Millisecond, 1*time.Millisecond)
|
||||||
|
tc.Set("a", 1, DefaultExpiration)
|
||||||
|
|
||||||
|
<-time.After(25 * time.Millisecond)
|
||||||
|
_, found = tc.GetWithExpirationUpdate("a", DefaultExpiration)
|
||||||
|
if !found {
|
||||||
|
t.Error("item `a` not expired yet")
|
||||||
|
}
|
||||||
|
|
||||||
|
<-time.After(25 * time.Millisecond)
|
||||||
|
_, found = tc.Get("a")
|
||||||
|
if !found {
|
||||||
|
t.Error("item `a` not expired yet")
|
||||||
|
}
|
||||||
|
|
||||||
|
<-time.After(30 * time.Millisecond)
|
||||||
|
_, found = tc.Get("a")
|
||||||
|
if found {
|
||||||
|
t.Error("Found `a` when it should have been automatically deleted")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -109,8 +109,8 @@ func (sc *shardedCache) DeleteExpired() {
|
||||||
// fields of the items should be checked. Note that explicit synchronization
|
// fields of the items should be checked. Note that explicit synchronization
|
||||||
// is needed to use a cache and its corresponding Items() return values at
|
// is needed to use a cache and its corresponding Items() return values at
|
||||||
// the same time, as the maps are shared.
|
// the same time, as the maps are shared.
|
||||||
func (sc *shardedCache) Items() []map[string]Item {
|
func (sc *shardedCache) Items() []map[string]*Item {
|
||||||
res := make([]map[string]Item, len(sc.cs))
|
res := make([]map[string]*Item, len(sc.cs))
|
||||||
for i, v := range sc.cs {
|
for i, v := range sc.cs {
|
||||||
res[i] = v.Items()
|
res[i] = v.Items()
|
||||||
}
|
}
|
||||||
|
@ -171,7 +171,7 @@ func newShardedCache(n int, de time.Duration) *shardedCache {
|
||||||
for i := 0; i < n; i++ {
|
for i := 0; i < n; i++ {
|
||||||
c := &cache{
|
c := &cache{
|
||||||
defaultExpiration: de,
|
defaultExpiration: de,
|
||||||
items: map[string]Item{},
|
items: map[string]*Item{},
|
||||||
}
|
}
|
||||||
sc.cs[i] = c
|
sc.cs[i] = c
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue