Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ILRUCache ¶
type ILRUCache interface {
Set(ctx context.Context, key string, value interface{}, expireAt time.Time)
Get(ctx context.Context, key string) (interface{}, bool)
Del(ctx context.Context, key string)
}
func NewLRUCache ¶
Click to show internal directories.
Click to hide internal directories.