// // cache_contact.go // Copyright (C) 2022 tiglog // // Distributed under terms of the MIT license. // package gcache import "time" type ICacheAdapter interface { Get(key string) (string, error) Set(key string, val interface{}, exp time.Duration) error Del(keys ...string) int64 Has(key string) bool End() }