github.com/charlienet/go-mixed@v0.3.7/cache/distributd_cache.go (about)

     1  package cache
     2  
     3  import "time"
     4  
     5  type DistributdCache interface {
     6  	Get(key string, out any) error
     7  	Set(key string, value any, expiration time.Duration) error
     8  	Delete(key ...string) error
     9  	Ping() error
    10  }