master
Patrick Mylund Nielsen 13 years ago
parent 8f430150d6
commit c84223dab4

@ -288,10 +288,10 @@ func stopJanitor(c *Cache) {
} }
// Returns a new cache with a given default expiration duration and default cleanup // Returns a new cache with a given default expiration duration and default cleanup
// interval. If the expiration duration is less than 1, the items in the cache never expire // interval. If the expiration duration is less than 1, the items in the cache never
// and have to be deleted manually. If the cleanup interval is less than one, expired // expire and must be deleted manually. If the cleanup interval is less than one,
// items are not deleted from the cache before their next lookup or before calling // expired items are not deleted from the cache before their next lookup or before
// DeleteExpired. // calling DeleteExpired.
func New(de, ci time.Duration) *Cache { func New(de, ci time.Duration) *Cache {
if de == 0 { if de == 0 {
de = -1 de = -1

@ -339,7 +339,7 @@ func TestDecrementInt64(t *testing.T) {
tc.Set("int64", int64(5), 0) tc.Set("int64", int64(5), 0)
err := tc.Decrement("int64", 2) err := tc.Decrement("int64", 2)
if err != nil { if err != nil {
t.Error("Error incrementing:", err) t.Error("Error decrementing:", err)
} }
x, found := tc.Get("int64") x, found := tc.Get("int64")
if !found { if !found {

Loading…
Cancel
Save