Skip to content

Instantly share code, notes, and snippets.

@s4l1h
Created October 16, 2016 13:59
Show Gist options
  • Select an option

  • Save s4l1h/79a0a6f0ae171a05e80c2b8e2b26c31d to your computer and use it in GitHub Desktop.

Select an option

Save s4l1h/79a0a6f0ae171a05e80c2b8e2b26c31d to your computer and use it in GitHub Desktop.
// Cache interface
type Cache interface {
// Name cache provider adını döndürecek
Name() string
// Set cache'e data kaydeder
Set(key string, data []byte) error
// Get cache'ten data alır
Get(key string) ([]byte, error)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment