13
如果我有以下配置:ehcache.xml中的緩存是否繼承自defaultCache?
<defaultCache timeToIdleSeconds="120"
timeToLiveSeconds="120" />
<cache name="test"
timeToLiveSeconds="300" />
會是怎樣的timeToIdleSeconds
用於緩存test
價值?它會從默認緩存中繼承,因此等於120,還是會採用手冊中給出的默認值,即0(無窮大)?
我看過的文本,但對我來說似乎不是太清楚。 –
僅供參考,'defaultCache'設置也用於調用'CacheManager#addCacheIfAbsent(String cacheName)'。 –