@@ -14,7 +14,7 @@ public sealed class FastConcurrentTLru<K, V> : TemplateConcurrentLru<K, V, LongT
1414 /// <param name="capacity">The maximum number of elements that the FastConcurrentTLru can contain.</param>
1515 /// <param name="timeToLive">The time to live for cached values.</param>
1616 public FastConcurrentTLru ( int capacity , TimeSpan timeToLive )
17- : base ( Defaults . ConcurrencyLevel , new FavorFrequencyPartition ( capacity ) , EqualityComparer < K > . Default , new TLruLongTicksPolicy < K , V > ( timeToLive ) , default )
17+ : base ( Defaults . ConcurrencyLevel , new FavorWarmPartition ( capacity ) , EqualityComparer < K > . Default , new TLruLongTicksPolicy < K , V > ( timeToLive ) , default )
1818 {
1919 }
2020
@@ -27,7 +27,7 @@ public FastConcurrentTLru(int capacity, TimeSpan timeToLive)
2727 /// <param name="comparer">The IEqualityComparer<T> implementation to use when comparing keys.</param>
2828 /// <param name="timeToLive">The time to live for cached values.</param>
2929 public FastConcurrentTLru ( int concurrencyLevel , int capacity , IEqualityComparer < K > comparer , TimeSpan timeToLive )
30- : base ( concurrencyLevel , new FavorFrequencyPartition ( capacity ) , comparer , new TLruLongTicksPolicy < K , V > ( timeToLive ) , default )
30+ : base ( concurrencyLevel , new FavorWarmPartition ( capacity ) , comparer , new TLruLongTicksPolicy < K , V > ( timeToLive ) , default )
3131 {
3232 }
3333
0 commit comments