mirror of
https://github.com/go-micro/go-micro.git
synced 2024-12-30 10:10:44 +02:00
05a299b76c
* Add simple in-memory cache * Support configuring cache expiration duration * Support preinitializing cache with items * Register cache
69 lines
1.0 KiB
Go
69 lines
1.0 KiB
Go
package cache
|
|
|
|
import (
|
|
"context"
|
|
"sync"
|
|
"time"
|
|
)
|
|
|
|
type memCache struct {
|
|
opts Options
|
|
sync.RWMutex
|
|
ctx context.Context
|
|
|
|
items map[string]Item
|
|
}
|
|
|
|
func (c *memCache) Context(ctx context.Context) Cache {
|
|
c.ctx = ctx
|
|
return c
|
|
}
|
|
|
|
func (c *memCache) Get(key string) (interface{}, time.Time, error) {
|
|
c.RWMutex.Lock()
|
|
defer c.RWMutex.Unlock()
|
|
|
|
item, found := c.items[key]
|
|
if !found {
|
|
return nil, time.Time{}, ErrKeyNotFound
|
|
}
|
|
if item.Expired() {
|
|
return nil, time.Time{}, ErrItemExpired
|
|
}
|
|
|
|
return item.Value, time.Unix(0, item.Expiration), nil
|
|
}
|
|
|
|
func (c *memCache) Put(key string, val interface{}, d time.Duration) error {
|
|
var e int64
|
|
if d == DefaultExpiration {
|
|
d = c.opts.Expiration
|
|
}
|
|
if d > 0 {
|
|
e = time.Now().Add(d).UnixNano()
|
|
}
|
|
|
|
c.RWMutex.Lock()
|
|
defer c.RWMutex.Unlock()
|
|
|
|
c.items[key] = Item{
|
|
Value: val,
|
|
Expiration: e,
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (c *memCache) Delete(key string) error {
|
|
c.RWMutex.Lock()
|
|
defer c.RWMutex.Unlock()
|
|
|
|
_, found := c.items[key]
|
|
if !found {
|
|
return ErrKeyNotFound
|
|
}
|
|
|
|
delete(c.items, key)
|
|
return nil
|
|
}
|