MCPcopy
hub / github.com/revel/revel / Get

Function Get

cache/cache.go:131–131  ·  view source on GitHub ↗

The package implements the Cache interface (as sugar).

(key string, ptrValue interface{})

Source from the content-addressed store, hash-verified

129// The package implements the Cache interface (as sugar).
130
131func Get(key string, ptrValue interface{}) error { return Instance.Get(key, ptrValue) }
132func GetMulti(keys ...string) (Getter, error) { return Instance.GetMulti(keys...) }
133func Delete(key string) error { return Instance.Delete(key) }
134func Increment(key string, n uint64) (newValue uint64, err error) { return Instance.Increment(key, n) }

Callers

nothing calls this directly

Calls 1

GetMethod · 0.65

Tested by

no test coverage detected