Documentation ¶
Overview ¶
Example (AdvancedUsage) ¶
ring := redis.NewRing(&redis.RingOptions{ Addrs: map[string]string{ "server1": ":6379", "server2": ":6380", }, }) mycache := cache.New(&cache.Options{ Redis: ring, LocalCache: cache.NewTinyLFU(1000, time.Minute), }) obj := new(Object) err := mycache.Once(&cache.Item{ Key: "mykey", Value: obj, // destination Do: func(*cache.Item) (interface{}, error) { return &Object{ Str: "mystring", Num: 42, }, nil }, }) if err != nil { panic(err) } fmt.Println(obj)
Output: &{mystring 42}
Example (BasicUsage) ¶
ring := redis.NewRing(&redis.RingOptions{ Addrs: map[string]string{ "server1": ":6379", "server2": ":6380", }, }) mycache := cache.New(&cache.Options{ Redis: ring, LocalCache: cache.NewTinyLFU(1000, time.Minute), }) ctx := context.TODO() key := "mykey" obj := &Object{ Str: "mystring", Num: 42, } if err := mycache.Set(&cache.Item{ Ctx: ctx, Key: key, Value: obj, TTL: time.Hour, }); err != nil { panic(err) } var wanted Object if err := mycache.Get(ctx, key, &wanted); err == nil { fmt.Println(wanted) }
Output: {mystring 42}
Index ¶
- Variables
- type Cache
- func (cd *Cache) Delete(ctx context.Context, key string) error
- func (cd *Cache) DeleteFromLocalCache(key string)
- func (cd *Cache) Exists(ctx context.Context, key string) bool
- func (cd *Cache) Get(ctx context.Context, key string, value interface{}) error
- func (cd *Cache) GetSkippingLocalCache(ctx context.Context, key string, value interface{}) error
- func (cd *Cache) Keys(ctx context.Context, match string, count int64) *[]string
- func (cd *Cache) Marshal(value interface{}) ([]byte, error)
- func (cd *Cache) Once(item *Item) error
- func (cd *Cache) Set(item *Item) error
- func (cd *Cache) Stats() *Stats
- func (cd *Cache) Unmarshal(b []byte, value interface{}) error
- type Item
- type LocalCache
- type MarshalFunc
- type Options
- type Stats
- type TinyLFU
- type UnmarshalFunc
Examples ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var (
ErrCacheMiss = errors.New("cache: key is missing")
)
Functions ¶
This section is empty.
Types ¶
type Cache ¶
type Cache struct {
// contains filtered or unexported fields
}
func (*Cache) DeleteFromLocalCache ¶
func (*Cache) GetSkippingLocalCache ¶
Get gets the value for the given key skipping local cache.
func (*Cache) Once ¶
Once gets the item.Value for the given item.Key from the cache or executes, caches, and returns the results of the given item.Func, making sure that only one execution is in-flight for a given item.Key at a time. If a duplicate comes in, the duplicate caller waits for the original to complete and receives the same results.
type Item ¶
type Item struct { Ctx context.Context Key string Value interface{} // TTL is the cache expiration time. // Default TTL is 1 hour. TTL time.Duration // Do returns value to be cached. Do func(*Item) (interface{}, error) // SetXX only sets the key if it already exists. SetXX bool // SetNX only sets the key if it does not already exist. SetNX bool // SkipLocalCache skips local cache as if it is not set. SkipLocalCache bool }
type LocalCache ¶
type MarshalFunc ¶
------------------------------------------------------------------------------
type Options ¶
type Options struct { Redis rediser LocalCache LocalCache StatsEnabled bool Marshal MarshalFunc Unmarshal UnmarshalFunc }
type TinyLFU ¶
type TinyLFU struct {
// contains filtered or unexported fields
}
func (*TinyLFU) UseRandomizedTTL ¶
type UnmarshalFunc ¶
------------------------------------------------------------------------------
Click to show internal directories.
Click to hide internal directories.