README.md: Remove one level of indentation and increase 'recommended' cleanupInterval

master
Patrick Mylund Nielsen 8 years ago committed by GitHub
parent e7a9def80f
commit dd1ed0ba63

@ -27,10 +27,9 @@ one) to recover from downtime quickly. (See the docs for `NewFrom()` for caveats
)
func main() {
// Create a cache with a default expiration time of 5 minutes, and which
// purges expired items every 30 seconds
c := cache.New(5*time.Minute, 30*time.Second)
// purges expired items every 10 minutes
c := cache.New(5*time.Minute, 10*time.Minute)
// Set the value of the key "foo" to "bar", with the default expiration time
c.Set("foo", "bar", cache.DefaultExpiration)

Loading…
Cancel
Save