Disable eviction on 0 expiration time

This commit is contained in:
Frederick F. Kautz IV 2015-04-30 19:34:35 -07:00
parent f59535f052
commit 94e24f1a05
1 changed files with 3 additions and 1 deletions

View File

@ -85,7 +85,9 @@ func Start(maxSize uint64, expiration time.Duration) (chan<- string, <-chan erro
memory.objects.OnEvicted = memory.evictObject
// set up memory expiration
go memory.expireLRUObjects()
if expiration > 0 {
go memory.expireLRUObjects()
}
go start(ctrlChannel, errorChannel)
return ctrlChannel, errorChannel, memory