// See more in local_test.go
key := []byte("k1")
val := []byte("v1")
cache := NewLocal()
cache.Set(key,val)
val = cache.Get(key)
cache.Del(key)
cache.FlushAll()
type Cacher interface {
// Set defined cache_set Set(key, val []byte)
// Get defined cache_get Get(key []byte) []byte// Del defined cache_delete by key Del(key []byte)
// FlushAll defined flush all cache FlushAll()
}