2012-01-02 02:01:04 -08:00
|
|
|
package cache
|
|
|
|
|
2012-01-15 10:16:10 -08:00
|
|
|
import (
|
2012-06-22 01:24:09 -07:00
|
|
|
"encoding/binary"
|
2012-01-28 18:16:59 -08:00
|
|
|
"encoding/gob"
|
2012-01-15 10:16:10 -08:00
|
|
|
"fmt"
|
2012-06-22 01:24:09 -07:00
|
|
|
"hash/fnv"
|
2012-01-28 18:16:59 -08:00
|
|
|
"io"
|
|
|
|
"os"
|
2012-01-15 10:16:10 -08:00
|
|
|
"runtime"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2012-08-17 02:32:24 -07:00
|
|
|
type unexportedInterface interface {
|
2012-07-04 11:34:37 -07:00
|
|
|
Set(string, interface{}, time.Duration)
|
|
|
|
Add(string, interface{}, time.Duration) error
|
|
|
|
Replace(string, interface{}, time.Duration) error
|
|
|
|
Get(string) (interface{}, bool)
|
|
|
|
Increment(string, int64) error
|
|
|
|
IncrementFloat(string, float64) error
|
|
|
|
Decrement(string, int64) error
|
|
|
|
Delete(string)
|
|
|
|
DeleteExpired()
|
|
|
|
Flush()
|
|
|
|
Save(io.Writer) error
|
|
|
|
SaveFile(string) error
|
|
|
|
Load(io.Reader) error
|
|
|
|
LoadFile(io.Reader) error
|
|
|
|
}
|
|
|
|
|
|
|
|
type item struct {
|
2012-01-28 18:16:59 -08:00
|
|
|
Object interface{}
|
|
|
|
Expiration *time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns true if the item has expired.
|
2012-07-04 11:34:37 -07:00
|
|
|
func (i *item) Expired() bool {
|
2012-01-28 18:16:59 -08:00
|
|
|
if i.Expiration == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return i.Expiration.Before(time.Now())
|
|
|
|
}
|
|
|
|
|
2012-01-02 02:01:04 -08:00
|
|
|
type Cache struct {
|
|
|
|
*cache
|
2012-06-21 19:56:12 -07:00
|
|
|
// If this is confusing, see the comment at the bottom of New()
|
2012-01-02 02:01:04 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
type cache struct {
|
2012-07-04 11:34:37 -07:00
|
|
|
sync.Mutex
|
|
|
|
defaultExpiration time.Duration
|
|
|
|
items map[string]*item
|
2012-01-02 02:01:04 -08:00
|
|
|
janitor *janitor
|
|
|
|
}
|
|
|
|
|
2012-06-21 20:24:48 -07:00
|
|
|
// Add an item to the cache, replacing any existing item. If the duration is 0,
|
2012-06-21 19:56:12 -07:00
|
|
|
// the cache's default expiration time is used. If it is -1, the item never
|
|
|
|
// expires.
|
2012-01-04 00:11:27 -08:00
|
|
|
func (c *cache) Set(k string, x interface{}, d time.Duration) {
|
2012-07-04 11:34:37 -07:00
|
|
|
c.Lock()
|
2012-01-03 23:54:01 -08:00
|
|
|
c.set(k, x, d)
|
2012-06-21 19:51:34 -07:00
|
|
|
// TODO: Calls to mu.Unlock are currently not deferred because defer
|
|
|
|
// adds ~200 ns (as of go1.)
|
2012-07-04 11:34:37 -07:00
|
|
|
c.Unlock()
|
2012-01-03 23:54:01 -08:00
|
|
|
}
|
|
|
|
|
2012-01-04 00:11:27 -08:00
|
|
|
func (c *cache) set(k string, x interface{}, d time.Duration) {
|
|
|
|
var e *time.Time
|
2012-01-02 02:01:04 -08:00
|
|
|
if d == 0 {
|
2012-07-04 11:34:37 -07:00
|
|
|
d = c.defaultExpiration
|
2012-01-02 02:01:04 -08:00
|
|
|
}
|
2012-01-02 08:13:29 -08:00
|
|
|
if d > 0 {
|
2012-01-04 00:11:27 -08:00
|
|
|
t := time.Now().Add(d)
|
2012-01-02 02:01:04 -08:00
|
|
|
e = &t
|
|
|
|
}
|
2012-07-04 11:34:37 -07:00
|
|
|
c.items[k] = &item{
|
2012-01-02 05:11:17 -08:00
|
|
|
Object: x,
|
2012-01-02 02:01:04 -08:00
|
|
|
Expiration: e,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-21 20:24:48 -07:00
|
|
|
// Add an item to the cache only if an item doesn't already exist for the given
|
|
|
|
// key, or if the existing item has expired. Returns an error otherwise.
|
2012-01-04 00:11:27 -08:00
|
|
|
func (c *cache) Add(k string, x interface{}, d time.Duration) error {
|
2012-07-04 11:34:37 -07:00
|
|
|
c.Lock()
|
2012-01-03 23:54:01 -08:00
|
|
|
_, found := c.get(k)
|
2012-01-02 05:04:47 -08:00
|
|
|
if found {
|
2012-07-04 11:34:37 -07:00
|
|
|
c.Unlock()
|
|
|
|
return fmt.Errorf("item %s already exists", k)
|
2012-01-02 05:04:47 -08:00
|
|
|
}
|
2012-01-03 23:54:01 -08:00
|
|
|
c.set(k, x, d)
|
2012-07-04 11:34:37 -07:00
|
|
|
c.Unlock()
|
2012-01-02 05:04:47 -08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2012-06-21 20:24:48 -07:00
|
|
|
// Set a new value for the cache key only if it already exists. Returns an
|
2012-06-21 19:56:12 -07:00
|
|
|
// error if it does not.
|
2012-01-04 00:11:27 -08:00
|
|
|
func (c *cache) Replace(k string, x interface{}, d time.Duration) error {
|
2012-07-04 11:34:37 -07:00
|
|
|
c.Lock()
|
2012-01-03 23:54:01 -08:00
|
|
|
_, found := c.get(k)
|
2012-01-02 05:04:47 -08:00
|
|
|
if !found {
|
2012-07-04 11:34:37 -07:00
|
|
|
c.Unlock()
|
|
|
|
return fmt.Errorf("item %s doesn't exist", k)
|
2012-01-02 05:04:47 -08:00
|
|
|
}
|
2012-01-03 23:54:01 -08:00
|
|
|
c.set(k, x, d)
|
2012-07-04 11:34:37 -07:00
|
|
|
c.Unlock()
|
2012-01-02 05:04:47 -08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2012-06-21 20:24:48 -07:00
|
|
|
// Get an item from the cache. Returns the item or nil, and a bool indicating
|
|
|
|
// whether the key was found.
|
2012-01-02 04:52:43 -08:00
|
|
|
func (c *cache) Get(k string) (interface{}, bool) {
|
2012-07-04 11:34:37 -07:00
|
|
|
c.Lock()
|
2012-02-16 16:40:55 -08:00
|
|
|
x, found := c.get(k)
|
2012-07-04 11:34:37 -07:00
|
|
|
c.Unlock()
|
2012-02-16 16:40:55 -08:00
|
|
|
return x, found
|
2012-01-03 23:54:01 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *cache) get(k string) (interface{}, bool) {
|
2012-07-04 11:34:37 -07:00
|
|
|
item, found := c.items[k]
|
2012-01-02 02:01:04 -08:00
|
|
|
if !found {
|
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
if item.Expired() {
|
2012-01-03 23:54:01 -08:00
|
|
|
c.delete(k)
|
2012-01-02 02:01:04 -08:00
|
|
|
return nil, false
|
|
|
|
}
|
|
|
|
return item.Object, true
|
|
|
|
}
|
|
|
|
|
2012-08-17 04:39:02 -07:00
|
|
|
// Increment an item of type float32 or float64 by n. Returns an error if the
|
|
|
|
// item's value is not floating point, if it was not found, or if it is not
|
|
|
|
// possible to increment it by n. Pass a negative number to decrement the
|
|
|
|
// value.
|
|
|
|
func (c *cache) IncrementFloat(k string, n float64) error {
|
|
|
|
c.Lock()
|
|
|
|
v, found := c.items[k]
|
|
|
|
if !found || v.Expired() {
|
|
|
|
c.Unlock()
|
|
|
|
return fmt.Errorf("item not found")
|
|
|
|
}
|
|
|
|
switch v.Object.(type) {
|
|
|
|
case float32:
|
|
|
|
v.Object = v.Object.(float32) + float32(n)
|
|
|
|
case float64:
|
|
|
|
v.Object = v.Object.(float64) + n
|
|
|
|
default:
|
|
|
|
c.Unlock()
|
|
|
|
return fmt.Errorf("The value for %s does not have type float32 or float64", k)
|
|
|
|
}
|
|
|
|
c.Unlock()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2012-06-21 19:56:12 -07:00
|
|
|
// Increment an item of type int, int8, int16, int32, int64, uintptr, uint,
|
2012-08-17 04:39:02 -07:00
|
|
|
// uint8, uint32, or uint64, float32 or float64 by n. Returns an error if the
|
2012-06-21 19:56:12 -07:00
|
|
|
// item's value is not an integer, if it was not found, or if it is not
|
2012-08-17 04:39:02 -07:00
|
|
|
// possible to increment it by n.
|
|
|
|
func (c *cache) Increment(k string, n int64) error {
|
2012-07-04 11:34:37 -07:00
|
|
|
c.Lock()
|
|
|
|
v, found := c.items[k]
|
2012-01-04 02:37:02 -08:00
|
|
|
if !found || v.Expired() {
|
2012-07-04 11:34:37 -07:00
|
|
|
c.Unlock()
|
|
|
|
return fmt.Errorf("item not found")
|
2012-01-02 04:52:43 -08:00
|
|
|
}
|
2012-08-17 02:35:20 -07:00
|
|
|
switch v.Object.(type) {
|
|
|
|
case int:
|
|
|
|
v.Object = v.Object.(int) + int(n)
|
|
|
|
case int8:
|
|
|
|
v.Object = v.Object.(int8) + int8(n)
|
|
|
|
case int16:
|
|
|
|
v.Object = v.Object.(int16) + int16(n)
|
|
|
|
case int32:
|
|
|
|
v.Object = v.Object.(int32) + int32(n)
|
|
|
|
case int64:
|
2012-08-17 04:39:02 -07:00
|
|
|
v.Object = v.Object.(int64) + n
|
2012-08-17 02:35:20 -07:00
|
|
|
case uint:
|
2012-01-02 04:52:43 -08:00
|
|
|
v.Object = v.Object.(uint) + uint(n)
|
2012-08-17 02:35:20 -07:00
|
|
|
case uintptr:
|
2012-01-02 04:52:43 -08:00
|
|
|
v.Object = v.Object.(uintptr) + uintptr(n)
|
2012-08-17 02:35:20 -07:00
|
|
|
case uint8:
|
2012-01-02 04:52:43 -08:00
|
|
|
v.Object = v.Object.(uint8) + uint8(n)
|
2012-08-17 02:35:20 -07:00
|
|
|
case uint16:
|
2012-01-02 04:52:43 -08:00
|
|
|
v.Object = v.Object.(uint16) + uint16(n)
|
2012-08-17 02:35:20 -07:00
|
|
|
case uint32:
|
2012-01-02 04:52:43 -08:00
|
|
|
v.Object = v.Object.(uint32) + uint32(n)
|
2012-08-17 02:35:20 -07:00
|
|
|
case uint64:
|
2012-01-02 04:52:43 -08:00
|
|
|
v.Object = v.Object.(uint64) + uint64(n)
|
2012-08-17 02:35:20 -07:00
|
|
|
case float32:
|
2012-01-02 04:52:43 -08:00
|
|
|
v.Object = v.Object.(float32) + float32(n)
|
2012-08-17 02:35:20 -07:00
|
|
|
case float64:
|
2012-08-17 04:39:02 -07:00
|
|
|
v.Object = v.Object.(float64) + float64(n)
|
2012-08-17 02:35:20 -07:00
|
|
|
default:
|
|
|
|
c.Unlock()
|
2012-08-17 04:39:02 -07:00
|
|
|
return fmt.Errorf("The value for %s is not an integer", k)
|
2012-01-02 04:52:43 -08:00
|
|
|
}
|
2012-07-04 11:34:37 -07:00
|
|
|
c.Unlock()
|
2012-01-02 04:52:43 -08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2012-06-21 19:56:12 -07:00
|
|
|
// Decrement an item of type int, int8, int16, int32, int64, uintptr, uint,
|
|
|
|
// uint8, uint32, or uint64, float32 or float64 by n. Returns an error if the
|
|
|
|
// item's value is not an integer, if it was not found, or if it is not
|
|
|
|
// possible to decrement it by n.
|
2012-01-04 00:11:27 -08:00
|
|
|
func (c *cache) Decrement(k string, n int64) error {
|
2012-08-17 04:39:02 -07:00
|
|
|
// TODO: Implement Increment and Decrement more cleanly.
|
|
|
|
// (Cannot do Increment(k, n*-1) for uints.)
|
|
|
|
c.Lock()
|
|
|
|
v, found := c.items[k]
|
|
|
|
if !found || v.Expired() {
|
|
|
|
c.Unlock()
|
|
|
|
return fmt.Errorf("item not found")
|
|
|
|
}
|
|
|
|
switch v.Object.(type) {
|
|
|
|
case int:
|
|
|
|
v.Object = v.Object.(int) - int(n)
|
|
|
|
case int8:
|
|
|
|
v.Object = v.Object.(int8) - int8(n)
|
|
|
|
case int16:
|
|
|
|
v.Object = v.Object.(int16) - int16(n)
|
|
|
|
case int32:
|
|
|
|
v.Object = v.Object.(int32) - int32(n)
|
|
|
|
case int64:
|
|
|
|
v.Object = v.Object.(int64) - n
|
|
|
|
case uint:
|
|
|
|
v.Object = v.Object.(uint) - uint(n)
|
|
|
|
case uintptr:
|
|
|
|
v.Object = v.Object.(uintptr) - uintptr(n)
|
|
|
|
case uint8:
|
|
|
|
v.Object = v.Object.(uint8) - uint8(n)
|
|
|
|
case uint16:
|
|
|
|
v.Object = v.Object.(uint16) - uint16(n)
|
|
|
|
case uint32:
|
|
|
|
v.Object = v.Object.(uint32) - uint32(n)
|
|
|
|
case uint64:
|
|
|
|
v.Object = v.Object.(uint64) - uint64(n)
|
|
|
|
case float32:
|
|
|
|
v.Object = v.Object.(float32) - float32(n)
|
|
|
|
case float64:
|
|
|
|
v.Object = v.Object.(float64) - float64(n)
|
|
|
|
default:
|
|
|
|
c.Unlock()
|
|
|
|
return fmt.Errorf("The value for %s is not an integer", k)
|
|
|
|
}
|
|
|
|
c.Unlock()
|
|
|
|
return nil
|
2012-01-02 04:52:43 -08:00
|
|
|
}
|
|
|
|
|
2012-06-21 20:24:48 -07:00
|
|
|
// Delete an item from the cache. Does nothing if the key is not in the cache.
|
2012-01-02 04:52:43 -08:00
|
|
|
func (c *cache) Delete(k string) {
|
2012-07-04 11:34:37 -07:00
|
|
|
c.Lock()
|
2012-01-03 23:54:01 -08:00
|
|
|
c.delete(k)
|
2012-07-04 11:34:37 -07:00
|
|
|
c.Unlock()
|
2012-01-03 23:54:01 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *cache) delete(k string) {
|
2012-07-04 11:34:37 -07:00
|
|
|
delete(c.items, k)
|
2012-01-02 02:01:04 -08:00
|
|
|
}
|
|
|
|
|
2012-06-21 20:24:48 -07:00
|
|
|
// Delete all expired items from the cache.
|
2012-01-02 02:01:04 -08:00
|
|
|
func (c *cache) DeleteExpired() {
|
2012-07-04 11:34:37 -07:00
|
|
|
c.Lock()
|
|
|
|
for k, v := range c.items {
|
2012-01-02 02:01:04 -08:00
|
|
|
if v.Expired() {
|
2012-01-03 23:54:01 -08:00
|
|
|
c.delete(k)
|
2012-01-02 02:01:04 -08:00
|
|
|
}
|
|
|
|
}
|
2012-07-04 11:34:37 -07:00
|
|
|
c.Unlock()
|
2012-01-02 02:01:04 -08:00
|
|
|
}
|
|
|
|
|
2012-06-21 20:24:48 -07:00
|
|
|
// Write the cache's items (using Gob) to an io.Writer.
|
2012-02-18 16:21:07 -08:00
|
|
|
func (c *cache) Save(w io.Writer) (err error) {
|
2012-01-28 18:16:59 -08:00
|
|
|
enc := gob.NewEncoder(w)
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
if x := recover(); x != nil {
|
2012-02-16 15:22:46 -08:00
|
|
|
err = fmt.Errorf("Error registering item types with Gob library")
|
2012-01-28 18:16:59 -08:00
|
|
|
}
|
|
|
|
}()
|
2012-07-04 11:34:37 -07:00
|
|
|
for _, v := range c.items {
|
2012-01-28 18:16:59 -08:00
|
|
|
gob.Register(v.Object)
|
|
|
|
}
|
2012-07-04 11:34:37 -07:00
|
|
|
err = enc.Encode(&c.items)
|
2012-02-18 16:21:07 -08:00
|
|
|
return
|
2012-01-28 18:16:59 -08:00
|
|
|
}
|
|
|
|
|
2012-06-21 20:24:48 -07:00
|
|
|
// Save the cache's items to the given filename, creating the file if it
|
2012-01-28 18:34:14 -08:00
|
|
|
// doesn't exist, and overwriting it if it does.
|
2012-01-28 18:16:59 -08:00
|
|
|
func (c *cache) SaveFile(fname string) error {
|
|
|
|
fp, err := os.Create(fname)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return c.Save(fp)
|
|
|
|
}
|
|
|
|
|
2012-06-21 20:24:48 -07:00
|
|
|
// Add (Gob-serialized) cache items from an io.Reader, excluding any items with
|
|
|
|
// keys that already exist in the current cache.
|
2012-01-28 18:16:59 -08:00
|
|
|
func (c *cache) Load(r io.Reader) error {
|
|
|
|
dec := gob.NewDecoder(r)
|
2012-07-04 11:34:37 -07:00
|
|
|
items := map[string]*item{}
|
2012-01-28 18:16:59 -08:00
|
|
|
err := dec.Decode(&items)
|
|
|
|
if err == nil {
|
|
|
|
for k, v := range items {
|
2012-07-04 11:34:37 -07:00
|
|
|
_, found := c.items[k]
|
2012-01-28 18:16:59 -08:00
|
|
|
if !found {
|
2012-07-04 11:34:37 -07:00
|
|
|
c.items[k] = v
|
2012-01-28 18:16:59 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2012-06-21 20:24:48 -07:00
|
|
|
// Load and add cache items from the given filename, excluding any items with
|
|
|
|
// keys that already exist in the current cache.
|
2012-01-28 18:16:59 -08:00
|
|
|
func (c *cache) LoadFile(fname string) error {
|
|
|
|
fp, err := os.Open(fname)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return c.Load(fp)
|
|
|
|
}
|
|
|
|
|
2012-06-21 20:24:48 -07:00
|
|
|
// Delete all items from the cache.
|
2012-01-02 02:32:05 -08:00
|
|
|
func (c *cache) Flush() {
|
2012-07-04 11:34:37 -07:00
|
|
|
c.Lock()
|
|
|
|
c.items = map[string]*item{}
|
|
|
|
c.Unlock()
|
2012-01-02 02:01:04 -08:00
|
|
|
}
|
|
|
|
|
2012-01-28 18:16:59 -08:00
|
|
|
type janitor struct {
|
|
|
|
Interval time.Duration
|
|
|
|
stop chan bool
|
2012-01-02 02:01:04 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (j *janitor) Run(c *cache) {
|
|
|
|
j.stop = make(chan bool)
|
|
|
|
tick := time.Tick(j.Interval)
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-tick:
|
|
|
|
c.DeleteExpired()
|
|
|
|
case <-j.stop:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-22 01:24:09 -07:00
|
|
|
func stopJanitor(c *Cache) {
|
|
|
|
c.janitor.stop <- true
|
2012-01-02 02:01:04 -08:00
|
|
|
}
|
|
|
|
|
2012-06-22 01:24:09 -07:00
|
|
|
func runJanitor(c *cache, ci time.Duration) {
|
|
|
|
j := &janitor{
|
|
|
|
Interval: ci,
|
|
|
|
}
|
|
|
|
c.janitor = j
|
|
|
|
go j.Run(c)
|
2012-01-02 02:01:04 -08:00
|
|
|
}
|
|
|
|
|
2012-06-22 01:24:09 -07:00
|
|
|
func newCache(de time.Duration) *cache {
|
2012-01-02 02:01:04 -08:00
|
|
|
if de == 0 {
|
|
|
|
de = -1
|
|
|
|
}
|
|
|
|
c := &cache{
|
2012-07-04 11:34:37 -07:00
|
|
|
defaultExpiration: de,
|
|
|
|
items: map[string]*item{},
|
2012-01-02 02:01:04 -08:00
|
|
|
}
|
2012-06-22 01:24:09 -07:00
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return a new cache with a given default expiration duration and cleanup
|
|
|
|
// interval. If the expiration duration is less than 1, the items in the cache
|
|
|
|
// never expire (by default), and must be deleted manually. If the cleanup
|
|
|
|
// interval is less than one, expired items are not deleted from the cache
|
|
|
|
// before their next lookup or before calling DeleteExpired.
|
|
|
|
func New(defaultExpiration, cleanupInterval time.Duration) *Cache {
|
|
|
|
c := newCache(defaultExpiration)
|
2012-06-21 19:50:10 -07:00
|
|
|
// This trick ensures that the janitor goroutine (which--granted it
|
|
|
|
// was enabled--is running DeleteExpired on c forever) does not keep
|
|
|
|
// the returned C object from being garbage collected. When it is
|
|
|
|
// garbage collected, the finalizer stops the janitor goroutine, after
|
|
|
|
// which c can be collected.
|
2012-01-02 02:01:04 -08:00
|
|
|
C := &Cache{c}
|
2012-06-22 01:24:09 -07:00
|
|
|
if cleanupInterval > 0 {
|
|
|
|
runJanitor(c, cleanupInterval)
|
2012-01-02 02:01:04 -08:00
|
|
|
runtime.SetFinalizer(C, stopJanitor)
|
|
|
|
}
|
|
|
|
return C
|
|
|
|
}
|
2012-06-22 01:24:09 -07:00
|
|
|
|
2012-08-17 02:32:24 -07:00
|
|
|
type unexportedShardedCache struct {
|
2012-06-22 01:24:09 -07:00
|
|
|
*shardedCache
|
|
|
|
}
|
|
|
|
|
|
|
|
type shardedCache struct {
|
|
|
|
m uint32
|
|
|
|
cs []*cache
|
|
|
|
janitor *shardedJanitor
|
|
|
|
}
|
|
|
|
|
2012-06-22 01:33:27 -07:00
|
|
|
func (sc *shardedCache) bucket(k string) *cache {
|
2012-06-22 01:24:09 -07:00
|
|
|
h := fnv.New32()
|
|
|
|
h.Write([]byte(k))
|
|
|
|
n := binary.BigEndian.Uint32(h.Sum(nil))
|
2012-07-04 11:34:37 -07:00
|
|
|
return sc.cs[n%sc.m]
|
2012-06-22 01:24:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (sc *shardedCache) Set(k string, x interface{}, d time.Duration) {
|
2012-06-22 01:33:27 -07:00
|
|
|
sc.bucket(k).Set(k, x, d)
|
2012-06-22 01:24:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (sc *shardedCache) Add(k string, x interface{}, d time.Duration) error {
|
2012-06-22 01:33:27 -07:00
|
|
|
return sc.bucket(k).Add(k, x, d)
|
2012-06-22 01:24:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (sc *shardedCache) Replace(k string, x interface{}, d time.Duration) error {
|
2012-06-22 01:33:27 -07:00
|
|
|
return sc.bucket(k).Replace(k, x, d)
|
2012-06-22 01:24:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (sc *shardedCache) Get(k string) (interface{}, bool) {
|
2012-06-22 01:33:27 -07:00
|
|
|
return sc.bucket(k).Get(k)
|
2012-06-22 01:24:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (sc *shardedCache) Increment(k string, n int64) error {
|
2012-06-22 01:33:27 -07:00
|
|
|
return sc.bucket(k).Increment(k, n)
|
2012-06-22 01:24:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (sc *shardedCache) IncrementFloat(k string, n float64) error {
|
2012-06-22 01:33:27 -07:00
|
|
|
return sc.bucket(k).IncrementFloat(k, n)
|
2012-06-22 01:24:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (sc *shardedCache) Decrement(k string, n int64) error {
|
2012-06-22 01:33:27 -07:00
|
|
|
return sc.bucket(k).Decrement(k, n)
|
2012-06-22 01:24:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (sc *shardedCache) Delete(k string) {
|
2012-06-22 01:33:27 -07:00
|
|
|
sc.bucket(k).Delete(k)
|
2012-06-22 01:24:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func (sc *shardedCache) DeleteExpired() {
|
|
|
|
for _, v := range sc.cs {
|
|
|
|
v.DeleteExpired()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sc *shardedCache) Flush() {
|
|
|
|
for _, v := range sc.cs {
|
|
|
|
v.Flush()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type shardedJanitor struct {
|
|
|
|
Interval time.Duration
|
|
|
|
stop chan bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (j *shardedJanitor) Run(sc *shardedCache) {
|
|
|
|
j.stop = make(chan bool)
|
|
|
|
tick := time.Tick(j.Interval)
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-tick:
|
|
|
|
sc.DeleteExpired()
|
|
|
|
case <-j.stop:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-17 02:32:24 -07:00
|
|
|
func stopShardedJanitor(sc *unexportedShardedCache) {
|
2012-06-22 01:24:09 -07:00
|
|
|
sc.janitor.stop <- true
|
|
|
|
}
|
|
|
|
|
|
|
|
func runShardedJanitor(sc *shardedCache, ci time.Duration) {
|
|
|
|
j := &shardedJanitor{
|
|
|
|
Interval: ci,
|
|
|
|
}
|
|
|
|
sc.janitor = j
|
|
|
|
go j.Run(sc)
|
|
|
|
}
|
|
|
|
|
|
|
|
func newShardedCache(n int, de time.Duration) *shardedCache {
|
|
|
|
sc := &shardedCache{
|
|
|
|
m: uint32(n - 1),
|
|
|
|
cs: make([]*cache, n),
|
|
|
|
}
|
|
|
|
for i := 0; i < n; i++ {
|
|
|
|
c := &cache{
|
2012-07-04 11:34:37 -07:00
|
|
|
defaultExpiration: de,
|
|
|
|
items: map[string]*item{},
|
2012-06-22 01:24:09 -07:00
|
|
|
}
|
|
|
|
sc.cs[i] = c
|
|
|
|
}
|
|
|
|
return sc
|
|
|
|
}
|
|
|
|
|
2012-08-17 02:32:24 -07:00
|
|
|
func unexportedNewSharded(shards int, defaultExpiration, cleanupInterval time.Duration) *unexportedShardedCache {
|
2012-06-22 01:24:09 -07:00
|
|
|
if defaultExpiration == 0 {
|
|
|
|
defaultExpiration = -1
|
|
|
|
}
|
|
|
|
sc := newShardedCache(shards, defaultExpiration)
|
2012-08-17 02:32:24 -07:00
|
|
|
SC := &unexportedShardedCache{sc}
|
2012-06-22 01:24:09 -07:00
|
|
|
if cleanupInterval > 0 {
|
|
|
|
runShardedJanitor(sc, cleanupInterval)
|
|
|
|
runtime.SetFinalizer(SC, stopShardedJanitor)
|
|
|
|
}
|
|
|
|
return SC
|
|
|
|
}
|