parent
1ae523dcc2
commit
3d77c1c8cf
@ -0,0 +1,5 @@
|
|||||||
|
package local
|
||||||
|
|
||||||
|
import "github.com/hashicorp/golang-lru/v2/simplelru"
|
||||||
|
|
||||||
|
type EvictCallback[K comparable, V any] simplelru.EvictCallback[K, V]
|
@ -0,0 +1,32 @@
|
|||||||
|
package option
|
||||||
|
|
||||||
|
var (
|
||||||
|
t = true
|
||||||
|
f = false
|
||||||
|
)
|
||||||
|
|
||||||
|
type Option struct {
|
||||||
|
enable *bool
|
||||||
|
key []string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (o *Option) Enable() *Option {
|
||||||
|
o.enable = &t
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
func (o *Option) Disable() *Option {
|
||||||
|
o.enable = &f
|
||||||
|
return o
|
||||||
|
}
|
||||||
|
|
||||||
|
func (o *Option) DelKey(key ...string) *Option {
|
||||||
|
if len(key) > 0 {
|
||||||
|
if o.key == nil {
|
||||||
|
o.key = key
|
||||||
|
} else {
|
||||||
|
o.key = append(o.key, key...)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return o
|
||||||
|
}
|
Loading…
Reference in new issue