Downloaded CB RC1 and was playing with the caching.
Created 2 custom caches inc. the template one that comes defined in
the cachebox.cfc in config.
Not a biggie but on the default cache report i get timeouts like...
Object  	Hits  	Timeout
cbox_plugin-logger   	5  	125
but on my app cache i get
MYVALUE 6 5184000
yet for this cache i have the following
objectDefaultTimeout = 120,
objectDefaultLastAccessTimeout = 30,
so where is the 5184000 coming from?
full config for this cache is
provider = "coldbox.system.cache.providers.CFColdBoxProvider",
properties = {
            objectDefaultTimeout = 120,
            objectDefaultLastAccessTimeout = 30,
            useLastAccessTimeouts = true,
            freeMemoryPercentageThreshold = 0,
            reapFrequency = 2,
            evictionPolicy = "LRU",
            evictCount = 2,
            maxObjects = 300,
            objectStore = "ConcurrentSoftReferenceStore"