|
|
@ -284,11 +284,11 @@ func stopJanitor(c *Cache) {
|
|
|
|
c.janitor.Stop()
|
|
|
|
c.janitor.Stop()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Returns a new cache with a given default expiration duration and default cleanup
|
|
|
|
// Returns a new cache with a given default expiration duration and cleanup
|
|
|
|
// interval. If the expiration duration is less than 1, the items in the cache never
|
|
|
|
// interval. If the expiration duration is less than 1, the items in the cache
|
|
|
|
// expire and must be deleted manually. If the cleanup interval is less than one,
|
|
|
|
// never expire (by default), and must be deleted manually. If the cleanup
|
|
|
|
// expired items are not deleted from the cache before their next lookup or before
|
|
|
|
// interval is less than one, expired items are not deleted from the cache
|
|
|
|
// calling DeleteExpired.
|
|
|
|
// before their next lookup or before 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
|
|
|
@ -305,10 +305,11 @@ func New(de, ci time.Duration) *Cache {
|
|
|
|
c.janitor = j
|
|
|
|
c.janitor = j
|
|
|
|
go j.Run(c)
|
|
|
|
go j.Run(c)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// This trick ensures that the janitor goroutine (which--granted it was enabled--is
|
|
|
|
// This trick ensures that the janitor goroutine (which--granted it
|
|
|
|
// running DeleteExpired on c forever) does not keep the returned C object from being
|
|
|
|
// was enabled--is running DeleteExpired on c forever) does not keep
|
|
|
|
// garbage collected. When it is garbage collected, the finalizer stops the janitor
|
|
|
|
// the returned C object from being garbage collected. When it is
|
|
|
|
// goroutine, after which c can be collected.
|
|
|
|
// garbage collected, the finalizer stops the janitor goroutine, after
|
|
|
|
|
|
|
|
// which c can be collected.
|
|
|
|
C := &Cache{c}
|
|
|
|
C := &Cache{c}
|
|
|
|
if ci > 0 {
|
|
|
|
if ci > 0 {
|
|
|
|
runtime.SetFinalizer(C, stopJanitor)
|
|
|
|
runtime.SetFinalizer(C, stopJanitor)
|
|
|
|