• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

bitfaster / BitFaster.Caching / 15981701051

30 Jun 2025 07:17PM UTC coverage: 99.086% (-0.08%) from 99.169%
15981701051

Pull #696

github

web-flow
Merge 286a28242 into fa14abd8f
Pull Request #696: update devskip

1124 of 1148 branches covered (97.91%)

Branch coverage included in aggregate %.

4839 of 4870 relevant lines covered (99.36%)

68769459.43 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

99.4
/BitFaster.Caching/Lru/ConcurrentLruCore.cs
1
using System;
2
using System.Collections;
3
using System.Collections.Concurrent;
4
using System.Collections.Generic;
5
using System.Diagnostics;
6
using System.Diagnostics.CodeAnalysis;
7
using System.Linq;
8
using System.Runtime.CompilerServices;
9
using System.Threading;
10
using System.Threading.Tasks;
11

12
namespace BitFaster.Caching.Lru
13
{
14
    /// <summary>
15
    /// A pseudo LRU based on the TU-Q eviction policy. The LRU list is composed of 3 segments: hot, warm and cold. 
16
    /// Cost of maintaining segments is amortized across requests. Items are only cycled when capacity is exceeded. 
17
    /// Pure read does not cycle items if all segments are within capacity constraints. There are no global locks. 
18
    /// On cache miss, a new item is added. Tail items in each segment are dequeued, examined, and are either enqueued 
19
    /// or discarded.
20
    /// The TU-Q scheme of hot, warm and cold is similar to that used in MemCached (https://memcached.org/blog/modern-lru/)
21
    /// and OpenBSD (https://flak.tedunangst.com/post/2Q-buffer-cache-algorithm), but does not use a background thread
22
    /// to maintain the internal queues.
23
    /// </summary>
24
    /// <remarks>
25
    /// Each segment has a capacity. When segment capacity is exceeded, items are moved as follows:
26
    /// <list type="number">
27
    ///   <item><description>New items are added to hot, WasAccessed = false.</description></item>
28
    ///   <item><description>When items are accessed, update WasAccessed = true.</description></item>
29
    ///   <item><description>When items are moved WasAccessed is set to false.</description></item>
30
    ///   <item><description>When hot is full, hot tail is moved to either Warm or Cold depending on WasAccessed.</description></item>
31
    ///   <item><description>When warm is full, warm tail is moved to warm head or cold depending on WasAccessed.</description></item>
32
    ///   <item><description>When cold is full, cold tail is moved to warm head or removed from dictionary on depending on WasAccessed.</description></item>
33
    ///</list>
34
    /// </remarks>
35
    public class ConcurrentLruCore<K, V, I, P, T> : ICacheExt<K, V>, IAsyncCacheExt<K, V>, IEnumerable<KeyValuePair<K, V>>
36
        where K : notnull
37
        where I : LruItem<K, V>
38
        where P : struct, IItemPolicy<K, V, I>
39
        where T : struct, ITelemetryPolicy<K, V>
40
    {
41
        private readonly ConcurrentDictionary<K, I> dictionary;
42

43
        private readonly ConcurrentQueue<I> hotQueue;
44
        private readonly ConcurrentQueue<I> warmQueue;
45
        private readonly ConcurrentQueue<I> coldQueue;
46

47
        // maintain count outside ConcurrentQueue, since ConcurrentQueue.Count holds a global lock
48
        private PaddedQueueCount counter;
49

50
        private readonly ICapacityPartition capacity;
51

52
        private readonly P itemPolicy;
53
        private bool isWarm = false;
2,544✔
54

55
        /// <summary>
56
        /// The telemetry policy.
57
        /// </summary>
58
        /// <remarks>
59
        /// Since T is a struct, making it readonly will force the runtime to make defensive copies
60
        /// if mutate methods are called. Therefore, field must be mutable to maintain count.
61
        /// </remarks>
62
        protected T telemetryPolicy;
63

64
        /// <summary>
65
        /// Initializes a new instance of the ConcurrentLruCore class with the specified concurrencyLevel, capacity, equality comparer, item policy and telemetry policy.
66
        /// </summary>
67
        /// <param name="concurrencyLevel">The concurrency level.</param>
68
        /// <param name="capacity">The capacity.</param>
69
        /// <param name="comparer">The equality comparer.</param>
70
        /// <param name="itemPolicy">The item policy.</param>
71
        /// <param name="telemetryPolicy">The telemetry policy.</param>
72
        /// <exception cref="ArgumentNullException"></exception>
73
        public ConcurrentLruCore(
2,544✔
74
            int concurrencyLevel,
2,544✔
75
            ICapacityPartition capacity,
2,544✔
76
            IEqualityComparer<K> comparer,
2,544✔
77
            P itemPolicy,
2,544✔
78
            T telemetryPolicy)
2,544✔
79
        {
2,544✔
80
            if (capacity == null)
2,544✔
81
                Throw.ArgNull(ExceptionArgument.capacity);
5✔
82

83
            if (comparer == null)
2,539✔
84
                Throw.ArgNull(ExceptionArgument.comparer);
5✔
85

86
            capacity.Validate();
2,534✔
87
            this.capacity = capacity;
2,529✔
88

89
            this.hotQueue = new ConcurrentQueue<I>();
2,529✔
90
            this.warmQueue = new ConcurrentQueue<I>();
2,529✔
91
            this.coldQueue = new ConcurrentQueue<I>();
2,529✔
92

93
            int dictionaryCapacity = ConcurrentDictionarySize.Estimate(this.Capacity);
2,529✔
94

95
            this.dictionary = new ConcurrentDictionary<K, I>(concurrencyLevel, dictionaryCapacity, comparer);
2,529✔
96
            this.itemPolicy = itemPolicy;
2,519✔
97
            this.telemetryPolicy = telemetryPolicy;
2,519✔
98
            this.telemetryPolicy.SetEventSource(this);
2,519✔
99
        }
2,519✔
100

101
        // No lock count: https://arbel.net/2013/02/03/best-practices-for-using-concurrentdictionary/
102
        ///<inheritdoc/>
103
        public int Count => this.dictionary.Where(i => !itemPolicy.ShouldDiscard(i.Value)).Count();
17,458,871✔
104

105
        ///<inheritdoc/>
106
        public int Capacity => this.capacity.Hot + this.capacity.Warm + this.capacity.Cold;
2,000,003,964✔
107

108
        ///<inheritdoc/>
109
        public Optional<ICacheMetrics> Metrics => CreateMetrics(this);
165✔
110

111
        ///<inheritdoc/>
112
        public Optional<ICacheEvents<K, V>> Events => CreateEvents(this);
1,308✔
113

114
        ///<inheritdoc/>
115
        public CachePolicy Policy => CreatePolicy(this);
345✔
116

117
        /// <summary>
118
        /// Gets the number of hot items.
119
        /// </summary>
120
        public int HotCount => Volatile.Read(ref this.counter.hot);
1,586,115✔
121

122
        /// <summary>
123
        /// Gets the number of warm items.
124
        /// </summary>
125
        public int WarmCount => Volatile.Read(ref this.counter.warm);
1,586,115✔
126

127
        /// <summary>
128
        /// Gets the number of cold items.
129
        /// </summary>
130
        public int ColdCount => Volatile.Read(ref this.counter.cold);
1,586,120✔
131

132
        /// <summary>
133
        /// Gets a collection containing the keys in the cache.
134
        /// </summary>
135
        public ICollection<K> Keys => this.dictionary.Keys;
1,000✔
136

137
        /// <summary>Returns an enumerator that iterates through the cache.</summary>
138
        /// <returns>An enumerator for the cache.</returns>
139
        /// <remarks>
140
        /// The enumerator returned from the cache is safe to use concurrently with
141
        /// reads and writes, however it does not represent a moment-in-time snapshot.  
142
        /// The contents exposed through the enumerator may contain modifications
143
        /// made after <see cref="GetEnumerator"/> was called.
144
        /// </remarks>
145
        public IEnumerator<KeyValuePair<K, V>> GetEnumerator()
146
        {
315✔
147
            foreach (var kvp in this.dictionary)
1,620✔
148
            {
340✔
149
                if (!itemPolicy.ShouldDiscard(kvp.Value))
340✔
150
                { 
325✔
151
                    yield return new KeyValuePair<K, V>(kvp.Key, kvp.Value.Value); 
325✔
152
                }
320✔
153
            }
335✔
154
        }
310✔
155

156
        ///<inheritdoc/>
157
        public bool TryGet(K key, [MaybeNullWhen(false)] out V value)
158
        {
2,247,094,422✔
159
            if (dictionary.TryGetValue(key, out var item))
2,247,094,422✔
160
            {
2,024,306,985✔
161
                return GetOrDiscard(item, out value);
2,024,306,985✔
162
            }
163

164
            value = default;
222,787,437✔
165
            this.telemetryPolicy.IncrementMiss();
222,787,437✔
166
            return false;
222,787,437✔
167
        }
2,247,094,422✔
168

169
        // AggressiveInlining forces the JIT to inline policy.ShouldDiscard(). For LRU policy 
170
        // the first branch is completely eliminated due to JIT time constant propogation.
171
        [MethodImpl(MethodImplOptions.AggressiveInlining)]
172
        private bool GetOrDiscard(I item, [MaybeNullWhen(false)] out V value)
173
        {
2,024,306,985✔
174
            if (this.itemPolicy.ShouldDiscard(item))
2,024,306,985✔
175
            {
4,421,694✔
176
                this.Move(item, ItemDestination.Remove, ItemRemovedReason.Evicted);
4,421,694✔
177
                this.telemetryPolicy.IncrementMiss();
4,421,694✔
178
                value = default;
4,421,694✔
179
                return false;
4,421,694✔
180
            }
181

182
            value = item.Value;
2,019,885,291✔
183

184
            this.itemPolicy.Touch(item);
2,019,885,291✔
185
            this.telemetryPolicy.IncrementHit();
2,019,885,291✔
186
            return true;
2,019,885,291✔
187
        }
2,024,306,985✔
188

189
        private bool TryAdd(K key, V value)
190
        {
227,194,906✔
191
            var newItem = this.itemPolicy.CreateItem(key, value);
227,194,906✔
192

193
            if (this.dictionary.TryAdd(key, newItem))
227,194,906✔
194
            {
216,836,984✔
195
                this.hotQueue.Enqueue(newItem);
216,836,984✔
196
                Cycle(Interlocked.Increment(ref counter.hot));
216,836,984✔
197
                return true;
216,836,984✔
198
            }
199

200
            Disposer<V>.Dispose(newItem.Value);
10,357,922✔
201
            return false;
10,357,922✔
202
        }
227,194,906✔
203

204
        ///<inheritdoc/>
205
        public V GetOrAdd(K key, Func<K, V> valueFactory)
206
        {
2,171,234,689✔
207
            while (true)
2,179,404,232✔
208
            {
2,179,404,232✔
209
                if (this.TryGet(key, out var value))
2,179,404,232✔
210
                {
2,008,389,553✔
211
                    return value;
2,008,389,553✔
212
                }
213

214
                // The value factory may be called concurrently for the same key, but the first write to the dictionary wins.
215
                value = valueFactory(key);
171,014,679✔
216

217
                if (TryAdd(key, value))
171,014,679✔
218
                {
162,845,136✔
219
                    return value;
162,845,136✔
220
                }
221
            }
8,169,543✔
222
        }
2,171,234,689✔
223

224
        /// <summary>
225
        /// Adds a key/value pair to the cache if the key does not already exist. Returns the new value, or the 
226
        /// existing value if the key already exists.
227
        /// </summary>
228
        /// <typeparam name="TArg">The type of an argument to pass into valueFactory.</typeparam>
229
        /// <param name="key">The key of the element to add.</param>
230
        /// <param name="valueFactory">The factory function used to generate a value for the key.</param>
231
        /// <param name="factoryArgument">An argument value to pass into valueFactory.</param>
232
        /// <returns>The value for the key. This will be either the existing value for the key if the key is already 
233
        /// in the cache, or the new value if the key was not in the cache.</returns>
234
        public V GetOrAdd<TArg>(K key, Func<K, TArg, V> valueFactory, TArg factoryArgument)
235
        {
20,000,015✔
236
            while (true)
20,938,065✔
237
            {
20,938,065✔
238
                if (this.TryGet(key, out var value))
20,938,065✔
239
                {
2,643,258✔
240
                    return value;
2,643,258✔
241
                }
242

243
                // The value factory may be called concurrently for the same key, but the first write to the dictionary wins.
244
                value = valueFactory(key, factoryArgument);
18,294,807✔
245

246
                if (TryAdd(key, value))
18,294,807✔
247
                {
17,356,757✔
248
                    return value;
17,356,757✔
249
                }
250
            }
938,050✔
251
        }
20,000,015✔
252

253
        ///<inheritdoc/>
254
        public async ValueTask<V> GetOrAddAsync(K key, Func<K, Task<V>> valueFactory)
255
        {
20,000,380✔
256
            while (true)
20,639,940✔
257
            {
20,639,940✔
258
                if (this.TryGet(key, out var value))
20,639,940✔
259
                {
1,678,704✔
260
                    return value;
1,678,704✔
261
                }
262

263
                // The value factory may be called concurrently for the same key, but the first write to the dictionary wins.
264
                // This is identical logic in ConcurrentDictionary.GetOrAdd method.
265
                value = await valueFactory(key).ConfigureAwait(false);
18,961,236✔
266

267
                if (TryAdd(key, value))
18,961,221✔
268
                {
18,321,661✔
269
                    return value;
18,321,661✔
270
                }
271
            }
639,560✔
272
        }
20,000,365✔
273

274
        /// <summary>
275
        /// Adds a key/value pair to the cache if the key does not already exist. Returns the new value, or the 
276
        /// existing value if the key already exists.
277
        /// </summary>
278
        /// <typeparam name="TArg">The type of an argument to pass into valueFactory.</typeparam>
279
        /// <param name="key">The key of the element to add.</param>
280
        /// <param name="valueFactory">The factory function used to asynchronously generate a value for the key.</param>
281
        /// <param name="factoryArgument">An argument value to pass into valueFactory.</param>
282
        /// <returns>A task that represents the asynchronous GetOrAdd operation.</returns>
283
        public async ValueTask<V> GetOrAddAsync<TArg>(K key, Func<K, TArg, Task<V>> valueFactory, TArg factoryArgument)
284
        {
20,000,345✔
285
            while (true)
20,611,114✔
286
            {
20,611,114✔
287
                if (this.TryGet(key, out var value))
20,611,114✔
288
                {
1,686,915✔
289
                    return value;
1,686,915✔
290
                }
291

292
                // The value factory may be called concurrently for the same key, but the first write to the dictionary wins.
293
                value = await valueFactory(key, factoryArgument).ConfigureAwait(false);
18,924,199✔
294

295
                if (TryAdd(key, value))
18,924,199✔
296
                {
18,313,430✔
297
                    return value;
18,313,430✔
298
                }
299
            }
610,769✔
300
        }
20,000,345✔
301

302
        /// <summary>
303
        /// Attempts to remove the specified key value pair.
304
        /// </summary>
305
        /// <param name="item">The item to remove.</param>
306
        /// <returns>true if the item was removed successfully; otherwise, false.</returns>
307
        public bool TryRemove(KeyValuePair<K, V> item)
308
        {
23,232,347✔
309
            if (this.dictionary.TryGetValue(item.Key, out var existing))
23,232,347✔
310
            {
2,338,054✔
311
                lock (existing)
2,338,054✔
312
                {
2,338,054✔
313
                    if (EqualityComparer<V>.Default.Equals(existing.Value, item.Value))
2,338,054✔
314
                    {
164,514✔
315
                        var kvp = new KeyValuePair<K, I>(item.Key, existing);
164,514✔
316
#if NET6_0_OR_GREATER
317
                    if (this.dictionary.TryRemove(kvp))
124,216✔
318
#else
319
                        // https://devblogs.microsoft.com/pfxteam/little-known-gems-atomic-conditional-removals-from-concurrentdictionary/
320
                        if (((ICollection<KeyValuePair<K, I>>)this.dictionary).Remove(kvp))
40,298✔
321
#endif
322
                        {
157,539✔
323
                            OnRemove(item.Key, kvp.Value, ItemRemovedReason.Removed);
157,539✔
324
                            return true;
157,539✔
325
                        }
326
                    }
6,975✔
327
                }
2,180,515✔
328

329
                // it existed, but we couldn't remove - this means value was replaced afer the TryGetValue (a race)
330
            }
2,180,515✔
331

332
            return false;
23,074,808✔
333
        }
23,232,347✔
334

335
        /// <summary>
336
        /// Attempts to remove and return the value that has the specified key.
337
        /// </summary>
338
        /// <param name="key">The key of the element to remove.</param>
339
        /// <param name="value">When this method returns, contains the object removed, or the default value of the value type if key does not exist.</param>
340
        /// <returns>true if the object was removed successfully; otherwise, false.</returns>
341
        public bool TryRemove(K key, [MaybeNullWhen(false)] out V value)
342
        {
20,000,298✔
343
            if (this.dictionary.TryRemove(key, out var item))
20,000,298✔
344
            {
32,666✔
345
                OnRemove(key, item, ItemRemovedReason.Removed);
32,666✔
346
                value = item.Value;
32,666✔
347
                return true;
32,666✔
348
            }
349

350
            value = default;
19,967,632✔
351
            return false;
19,967,632✔
352
        }
20,000,298✔
353

354
        ///<inheritdoc/>
355
        public bool TryRemove(K key)
356
        {
20,000,220✔
357
            return TryRemove(key, out _);
20,000,220✔
358
        }
20,000,220✔
359

360
        [MethodImpl(MethodImplOptions.AggressiveInlining)]
361
        private void OnRemove(K key, I item, ItemRemovedReason reason)
362
        {
234,339,986✔
363
            // Mark as not accessed, it will later be cycled out of the queues because it can never be fetched 
364
            // from the dictionary. Note: Hot/Warm/Cold count will reflect the removed item until it is cycled 
365
            // from the queue.
366
            item.WasAccessed = false;
234,339,986✔
367
            item.WasRemoved = true;
234,339,986✔
368

369
            this.telemetryPolicy.OnItemRemoved(key, item.Value, reason);
234,339,986✔
370

371
            // serialize dispose (common case dispose not thread safe)
372
            lock (item)
234,339,986✔
373
            {
234,339,986✔
374
                Disposer<V>.Dispose(item.Value);
234,339,986✔
375
            }
234,339,986✔
376
        }
234,339,986✔
377

378
        ///<inheritdoc/>
379
        ///<remarks>Note: Calling this method does not affect LRU order.</remarks>
380
        public bool TryUpdate(K key, V value)
381
        {
63,401,356✔
382
            if (this.dictionary.TryGetValue(key, out var existing))
63,401,356✔
383
            {
7,667,784✔
384
                lock (existing)
7,667,784✔
385
                {
7,667,784✔
386
                    if (!existing.WasRemoved)
7,667,784✔
387
                    {
7,540,842✔
388
                        V oldValue = existing.Value;
7,540,842✔
389

390
                        existing.Value = value;
7,540,842✔
391

392
                        this.itemPolicy.Update(existing);
7,540,842✔
393
// backcompat: remove conditional compile
394
#if NETCOREAPP3_0_OR_GREATER
395
                        this.telemetryPolicy.OnItemUpdated(existing.Key, oldValue, existing.Value);
7,540,842✔
396
#endif
397
                        Disposer<V>.Dispose(oldValue);
7,540,842✔
398

399
                        return true;
7,540,842✔
400
                    }
401
                }
126,942✔
402
            }
126,942✔
403

404
            return false;
55,860,514✔
405
        }
63,401,356✔
406

407
        ///<inheritdoc/>
408
        ///<remarks>Note: Updates to existing items do not affect LRU order. Added items are at the top of the LRU.</remarks>
409
        public void AddOrUpdate(K key, V value)
410
        {
23,195,480✔
411
            while (true)
23,401,231✔
412
            {
23,401,231✔
413
                // first, try to update
414
                if (this.TryUpdate(key, value))
23,401,231✔
415
                {
5,658,525✔
416
                    return;
5,658,525✔
417
                }
418

419
                // then try add
420
                var newItem = this.itemPolicy.CreateItem(key, value);
17,742,706✔
421

422
                if (this.dictionary.TryAdd(key, newItem))
17,742,706✔
423
                {
17,536,955✔
424
                    this.hotQueue.Enqueue(newItem);
17,536,955✔
425
                    Cycle(Interlocked.Increment(ref counter.hot));
17,536,955✔
426
                    return;
17,536,955✔
427
                }
428

429
                // if both update and add failed there was a race, try again
430
            }
205,751✔
431
        }
23,195,480✔
432

433
        ///<inheritdoc/>
434
        public void Clear()
435
        {
1,562,660✔
436
            // don't overlap Clear/Trim/TrimExpired
437
            lock (this.dictionary)
1,562,660✔
438
            {
1,562,660✔
439
                // evaluate queue count, remove everything including items removed from the dictionary but
440
                // not the queues. This also avoids the expensive o(n) no lock count, or locking the dictionary.
441
                int queueCount = this.HotCount + this.WarmCount + this.ColdCount;
1,562,660✔
442
                this.TrimLiveItems(itemsRemoved: 0, queueCount, ItemRemovedReason.Cleared);
1,562,660✔
443
            }
1,562,660✔
444
        }
1,562,660✔
445

446
        /// <summary>
447
        /// Trim the specified number of items from the cache. Removes all discardable items per IItemPolicy.ShouldDiscard(), then 
448
        /// itemCount-discarded items in LRU order, if any.
449
        /// </summary>
450
        /// <param name="itemCount">The number of items to remove.</param>
451
        /// <returns>The number of items removed from the cache.</returns>
452
        /// <exception cref="ArgumentOutOfRangeException"><paramref name="itemCount"/> is less than 0./</exception>
453
        /// <exception cref="ArgumentOutOfRangeException"><paramref name="itemCount"/> is greater than capacity./</exception>
454
        /// <remarks>
455
        /// Note: Trim affects LRU order. Calling Trim resets the internal accessed status of items.
456
        /// </remarks>
457
        public void Trim(int itemCount)
458
        {
305✔
459
            int capacity = this.Capacity;
305✔
460

461
            if (itemCount < 1 || itemCount > capacity)
305✔
462
                Throw.ArgOutOfRange(nameof(itemCount), "itemCount must be greater than or equal to one, and less than the capacity of the cache.");
10✔
463

464
            // clamp itemCount to number of items actually in the cache
465
            itemCount = Math.Min(itemCount, this.HotCount + this.WarmCount + this.ColdCount);
295✔
466

467
            // don't overlap Clear/Trim/TrimExpired
468
            lock (this.dictionary)
295✔
469
            {
295✔
470
                // first scan each queue for discardable items and remove them immediately. Note this can remove > itemCount items.
471
                int itemsRemoved = TrimAllDiscardedItems();
295✔
472

473
                TrimLiveItems(itemsRemoved, itemCount, ItemRemovedReason.Trimmed);
295✔
474
            }
295✔
475
        }
295✔
476

477
        private void TrimExpired()
478
        {
45✔
479
            if (this.itemPolicy.CanDiscard())
45✔
480
            {
45✔
481
                lock (this.dictionary)
45✔
482
                {
45✔
483
                    this.TrimAllDiscardedItems();
45✔
484
                } 
45✔
485
            }
45✔
486
        }
45✔
487

488
        /// <summary>
489
        /// Trim discarded items from all queues.
490
        /// </summary>
491
        /// <returns>The number of items removed.</returns>
492
        // backcompat: make internal
493
        protected int TrimAllDiscardedItems()
494
        {
340✔
495
            // don't overlap Clear/Trim/TrimExpired
496
            lock (this.dictionary)
340✔
497
            {
340✔
498
                int RemoveDiscardableItems(ConcurrentQueue<I> q, ref int queueCounter)
499
                {
1,020✔
500
                    int itemsRemoved = 0;
1,020✔
501
                    int localCount = queueCounter;
1,020✔
502

503
                    for (int i = 0; i < localCount; i++)
6,220✔
504
                    {
2,090✔
505
                        if (q.TryDequeue(out var item))
2,090✔
506
                        {
2,090✔
507
                            if (this.itemPolicy.ShouldDiscard(item))
2,090✔
508
                            {
285✔
509
                                Interlocked.Decrement(ref queueCounter);
285✔
510
                                this.Move(item, ItemDestination.Remove, ItemRemovedReason.Trimmed);
285✔
511
                                itemsRemoved++;
285✔
512
                            }
285✔
513
                            else if (item.WasRemoved)
1,805✔
514
                            {
30✔
515
                                Interlocked.Decrement(ref queueCounter);
30✔
516
                            }
30✔
517
                            else
518
                            {
1,775✔
519
                                q.Enqueue(item);
1,775✔
520
                            }
1,775✔
521
                        }
2,090✔
522
                    }
2,090✔
523

524
                    return itemsRemoved;
1,020✔
525
                }
1,020✔
526

527
                int coldRem = RemoveDiscardableItems(coldQueue, ref this.counter.cold);
340✔
528
                int warmRem = RemoveDiscardableItems(warmQueue, ref this.counter.warm);
340✔
529
                int hotRem = RemoveDiscardableItems(hotQueue, ref this.counter.hot);
340✔
530

531
                if (warmRem > 0)
340✔
532
                {
40✔
533
                    Volatile.Write(ref this.isWarm, false);
40✔
534
                }
40✔
535

536
                return coldRem + warmRem + hotRem;
340✔
537
            }
538
        }
340✔
539

540
        private void TrimLiveItems(int itemsRemoved, int itemCount, ItemRemovedReason reason)
541
        {
1,562,955✔
542
            // When items are touched, they are moved to warm by cycling. Therefore, to guarantee 
543
            // that we can remove itemCount items, we must cycle (2 * capacity.Warm) + capacity.Hot times.
544
            // If clear is called during trimming, it would be possible to get stuck in an infinite
545
            // loop here. The warm + hot limit also guards against this case.
546
            int trimWarmAttempts = 0;
1,562,955✔
547
            int maxWarmHotAttempts = (this.capacity.Warm * 2) + this.capacity.Hot;
1,562,955✔
548

549
            while (itemsRemoved < itemCount && trimWarmAttempts < maxWarmHotAttempts)
15,849,573✔
550
            {
14,286,618✔
551
                if (Volatile.Read(ref this.counter.cold) > 0)
14,286,618✔
552
                {
10,980,540✔
553
                    if (TryRemoveCold(reason) == (ItemDestination.Remove, 0))
10,980,540✔
554
                    {
10,979,947✔
555
                        itemsRemoved++;
10,979,947✔
556
                        trimWarmAttempts = 0;
10,979,947✔
557
                    }
10,979,947✔
558
                    else
559
                    {
593✔
560
                        TrimWarmOrHot(reason);
593✔
561
                    }
593✔
562
                }
10,980,540✔
563
                else
564
                {
3,306,078✔
565
                    TrimWarmOrHot(reason);
3,306,078✔
566
                    trimWarmAttempts++;
3,306,078✔
567
                }
3,306,078✔
568
            }
14,286,618✔
569

570
            if (Volatile.Read(ref this.counter.warm) < this.capacity.Warm)
1,562,955✔
571
            {
859,609✔
572
                Volatile.Write(ref this.isWarm, false);
859,609✔
573
            }
859,609✔
574
        }
1,562,955✔
575

576
        private void TrimWarmOrHot(ItemRemovedReason reason)
577
        {
3,306,671✔
578
            if (Volatile.Read(ref this.counter.warm) > 0)
3,306,671✔
579
            {
1,091,137✔
580
                CycleWarmUnchecked(reason);
1,091,137✔
581
            }
1,091,137✔
582
            else if (Volatile.Read(ref this.counter.hot) > 0)
2,215,534✔
583
            {
2,215,158✔
584
                CycleHotUnchecked(reason);
2,215,158✔
585
            }
2,215,158✔
586
        }
3,306,671✔
587

588
        private void Cycle(int hotCount)
589
        {
234,373,939✔
590
            if (isWarm)
234,373,939✔
591
            {
230,704,226✔
592
                (var dest, var count) = CycleHot(hotCount);
230,704,226✔
593

594
                int cycles = 0;
230,704,226✔
595
                while (cycles++ < 3 && dest != ItemDestination.Remove)
496,938,023✔
596
                {
266,233,797✔
597
                    if (dest == ItemDestination.Warm)
266,233,797✔
598
                    {
38,606,509✔
599
                        (dest, count) = CycleWarm(count);
38,606,509✔
600
                    }
38,606,509✔
601
                    else if (dest == ItemDestination.Cold)
227,627,288✔
602
                    {
227,627,288✔
603
                        (dest, count) = CycleCold(count);
227,627,288✔
604
                    }
227,627,288✔
605
                }
266,233,797✔
606

607
                // If nothing was removed yet, constrain the size of warm and cold by discarding the coldest item.
608
                if (dest != ItemDestination.Remove)
230,704,226✔
609
                {
4,538,628✔
610
                    if (dest == ItemDestination.Warm && count > this.capacity.Warm)
4,538,628✔
611
                    {
2,708,096✔
612
                        count = LastWarmToCold();
2,708,096✔
613
                    }
2,708,096✔
614

615
                    ConstrainCold(count, ItemRemovedReason.Evicted);
4,538,628✔
616
                }
4,538,628✔
617
            }
230,704,226✔
618
            else
619
            {
3,669,713✔
620
                // fill up the warm queue with new items until warm is full.
621
                // else during warmup the cache will only use the hot + cold queues until any item is requested twice.
622
                CycleDuringWarmup(hotCount);
3,669,713✔
623
            }
3,669,713✔
624
        }
234,373,939✔
625

626
        [MethodImpl(MethodImplOptions.NoInlining)]
627
        private void CycleDuringWarmup(int hotCount)
628
        {
3,669,713✔
629
            // do nothing until hot is full
630
            if (hotCount > this.capacity.Hot)
3,669,713✔
631
            {
1,447,335✔
632
                Interlocked.Decrement(ref this.counter.hot);
1,447,335✔
633

634
                if (this.hotQueue.TryDequeue(out var item))
1,447,335✔
635
                {
1,447,331✔
636
                    // special case: removed during warmup
637
                    if (item.WasRemoved)
1,447,331✔
638
                    {
126,909✔
639
                        return;
126,909✔
640
                    }
641

642
                    int count = this.Move(item, ItemDestination.Warm, ItemRemovedReason.Evicted);
1,320,422✔
643

644
                    // if warm is now full, overflow to cold and mark as warm
645
                    if (count > this.capacity.Warm)
1,320,422✔
646
                    {
264,097✔
647
                        Volatile.Write(ref this.isWarm, true);
264,097✔
648
                        count = LastWarmToCold();
264,097✔
649
                        ConstrainCold(count, ItemRemovedReason.Evicted);
264,097✔
650
                    }
264,097✔
651
                }
1,320,422✔
652
                else
653
                {
4✔
654
                    Interlocked.Increment(ref this.counter.hot);
4✔
655
                }
4✔
656
            }
1,320,426✔
657
        }
3,669,713✔
658

659
        private (ItemDestination, int) CycleHot(int hotCount)
660
        {
230,704,226✔
661
            if (hotCount > this.capacity.Hot)
230,704,226✔
662
            {
230,702,665✔
663
                return CycleHotUnchecked(ItemRemovedReason.Evicted);
230,702,665✔
664
            }
665

666
            return (ItemDestination.Remove, 0);
1,561✔
667
        }
230,704,226✔
668

669
        [MethodImpl(MethodImplOptions.AggressiveInlining)]
670
        private (ItemDestination, int) CycleHotUnchecked(ItemRemovedReason removedReason)
671
        {
232,917,823✔
672
            Interlocked.Decrement(ref this.counter.hot);
232,917,823✔
673

674
            if (this.hotQueue.TryDequeue(out var item))
232,917,823✔
675
            {
232,917,818✔
676
                var where = this.itemPolicy.RouteHot(item);
232,917,818✔
677
                return (where, this.Move(item, where, removedReason));
232,917,818✔
678
            }
679
            else
680
            {
5✔
681
                Interlocked.Increment(ref this.counter.hot);
5✔
682
                return (ItemDestination.Remove, 0);
5✔
683
            }
684
        }
232,917,823✔
685

686
        private (ItemDestination, int) CycleWarm(int count)
687
        {
38,606,509✔
688
            if (count > this.capacity.Warm)
38,606,509✔
689
            {
38,555,927✔
690
                return CycleWarmUnchecked(ItemRemovedReason.Evicted);
38,555,927✔
691
            }
692

693
            return (ItemDestination.Remove, 0);
50,582✔
694
        }
38,606,509✔
695

696
        [MethodImpl(MethodImplOptions.AggressiveInlining)]
697
        private (ItemDestination, int) CycleWarmUnchecked(ItemRemovedReason removedReason)
698
        {
39,647,064✔
699
            int wc = Interlocked.Decrement(ref this.counter.warm);
39,647,064✔
700

701
            if (this.warmQueue.TryDequeue(out var item))
39,647,064!
702
            {
39,647,064✔
703
                if (item.WasRemoved)
39,647,064✔
704
                {
848,794✔
705
                    return (ItemDestination.Remove, 0);
848,794✔
706
                }
707

708
                var where = this.itemPolicy.RouteWarm(item);
38,798,270✔
709

710
                // When the warm queue is full, we allow an overflow of 1 item before redirecting warm items to cold.
711
                // This only happens when hit rate is high, in which case we can consider all items relatively equal in
712
                // terms of which was least recently used.
713
                if (where == ItemDestination.Warm && wc <= this.capacity.Warm)
38,798,270✔
714
                {
8,278,406✔
715
                    return (ItemDestination.Warm, this.Move(item, where, removedReason));
8,278,406✔
716
                }
717
                else
718
                {
30,519,864✔
719
                    return (ItemDestination.Cold, this.Move(item, ItemDestination.Cold, removedReason));
30,519,864✔
720
                }
721
            }
722
            else
723
            {
×
724
                Interlocked.Increment(ref this.counter.warm);
×
725
                return (ItemDestination.Remove, 0);
×
726
            }
727
        }
39,647,064✔
728

729
        private (ItemDestination, int) CycleCold(int count)
730
        {
227,627,288✔
731
            if (count > this.capacity.Cold)
227,627,288✔
732
            {
220,132,834✔
733
                return TryRemoveCold(ItemRemovedReason.Evicted);
220,132,834✔
734
            }
735

736
            return (ItemDestination.Remove, 0);
7,494,454✔
737
        }
227,627,288✔
738

739
        [MethodImpl(MethodImplOptions.AggressiveInlining)]
740
        private (ItemDestination, int) TryRemoveCold(ItemRemovedReason removedReason)
741
        {
231,113,374✔
742
            Interlocked.Decrement(ref this.counter.cold);
231,113,374✔
743

744
            if (this.coldQueue.TryDequeue(out var item))
231,113,374✔
745
            {
231,113,191✔
746
                var where = this.itemPolicy.RouteCold(item);
231,113,191✔
747

748
                if (where == ItemDestination.Warm && Volatile.Read(ref this.counter.warm) <= this.capacity.Warm)
231,113,191✔
749
                {
3,392,946✔
750
                    return (ItemDestination.Warm, this.Move(item, where, removedReason));
3,392,946✔
751
                }
752
                else
753
                {
227,720,245✔
754
                    this.Move(item, ItemDestination.Remove, removedReason);
227,720,245✔
755
                    return (ItemDestination.Remove, 0);
227,720,245✔
756
                }
757
            }
758
            else
759
            {
183✔
760
                return (ItemDestination.Cold, Interlocked.Increment(ref this.counter.cold));
183✔
761
            }
762
        }
231,113,374✔
763

764
        [MethodImpl(MethodImplOptions.AggressiveInlining)]
765
        private int LastWarmToCold()
766
        {
2,972,193✔
767
            Interlocked.Decrement(ref this.counter.warm);
2,972,193✔
768

769
            if (this.warmQueue.TryDequeue(out var item))
2,972,193✔
770
            {
2,972,191✔
771
                var destination = item.WasRemoved ? ItemDestination.Remove : ItemDestination.Cold;
2,972,191✔
772
                return this.Move(item, destination, ItemRemovedReason.Evicted);
2,972,191✔
773
            }
774
            else
775
            {
2✔
776
                Interlocked.Increment(ref this.counter.warm);
2✔
777
                return 0;
2✔
778
            }
779
        }
2,972,193✔
780

781
        [MethodImpl(MethodImplOptions.AggressiveInlining)]
782
        private void ConstrainCold(int coldCount, ItemRemovedReason removedReason)
783
        {
4,802,725✔
784
            if (coldCount > this.capacity.Cold && this.coldQueue.TryDequeue(out var item))
4,802,725✔
785
            {
4,525,877✔
786
                Interlocked.Decrement(ref this.counter.cold);
4,525,877✔
787
                this.Move(item, ItemDestination.Remove, removedReason);
4,525,877✔
788
            }
4,525,877✔
789
        }
4,802,725✔
790

791
        [MethodImpl(MethodImplOptions.AggressiveInlining)]
792
        private int Move(I item, ItemDestination where, ItemRemovedReason removedReason)
793
        {
516,069,748✔
794
            item.WasAccessed = false;
516,069,748✔
795

796
            switch (where)
516,069,748✔
797
            {
798
                case ItemDestination.Warm:
799
                    this.warmQueue.Enqueue(item);
42,638,178✔
800
                    return Interlocked.Increment(ref this.counter.warm);
42,638,178✔
801
                case ItemDestination.Cold:
802
                    this.coldQueue.Enqueue(item);
235,646,293✔
803
                    return Interlocked.Increment(ref this.counter.cold);
235,646,293✔
804
                case ItemDestination.Remove:
805

806
                    var kvp = new KeyValuePair<K, I>(item.Key, item);
237,785,277✔
807

808
#if NET6_0_OR_GREATER
809
                    if (this.dictionary.TryRemove(kvp))
190,960,893✔
810
#else
811
                    // https://devblogs.microsoft.com/pfxteam/little-known-gems-atomic-conditional-removals-from-concurrentdictionary/
812
                    if (((ICollection<KeyValuePair<K, I>>)this.dictionary).Remove(kvp))
46,824,384✔
813
#endif
814
                    {
234,149,781✔
815
                        OnRemove(item.Key, item, removedReason);
234,149,781✔
816
                    }
234,149,781✔
817
                    break;
237,785,277✔
818
            }
819

820
            return 0;
237,785,277✔
821
        }
516,069,748✔
822

823
        /// <summary>Returns an enumerator that iterates through the cache.</summary>
824
        /// <returns>An enumerator for the cache.</returns>
825
        /// <remarks>
826
        /// The enumerator returned from the cache is safe to use concurrently with
827
        /// reads and writes, however it does not represent a moment-in-time snapshot.  
828
        /// The contents exposed through the enumerator may contain modifications
829
        /// made after <see cref="GetEnumerator"/> was called.
830
        /// </remarks>
831
        IEnumerator IEnumerable.GetEnumerator()
832
        {
15✔
833
            return ((ConcurrentLruCore<K, V, I, P, T>)this).GetEnumerator();
15✔
834
        }
15✔
835

836
#if DEBUG
837
        /// <summary>
838
        /// Format the LRU as a string by converting all the keys to strings.
839
        /// </summary>
840
        /// <returns>The LRU formatted as a string.</returns>
841
        internal string FormatLruString()
842
        {
75✔
843
            var sb = new System.Text.StringBuilder();
75✔
844

845
            sb.Append("Hot [");
75✔
846
            sb.Append(string.Join(",", this.hotQueue.Select(n => n.Key.ToString())));
280✔
847
            sb.Append("] Warm [");
75✔
848
            sb.Append(string.Join(",", this.warmQueue.Select(n => n.Key.ToString())));
250✔
849
            sb.Append("] Cold [");
75✔
850
            sb.Append(string.Join(",", this.coldQueue.Select(n => n.Key.ToString())));
225✔
851
            sb.Append(']');
75✔
852

853
            return sb.ToString();
75✔
854
        }
75✔
855
#endif
856

857
        private static CachePolicy CreatePolicy(ConcurrentLruCore<K, V, I, P, T> lru)
858
        {
345✔
859
            var p = new Proxy(lru);
345✔
860

861
            if (typeof(P) == typeof(AfterAccessPolicy<K, V>))
345✔
862
            {
55✔
863
                return new CachePolicy(new Optional<IBoundedPolicy>(p), Optional<ITimePolicy>.None(), new Optional<ITimePolicy>(p), Optional<IDiscreteTimePolicy>.None());
55✔
864
            }
865

866
            // IsAssignableFrom is a jit intrinsic https://github.com/dotnet/runtime/issues/4920
867
            if (typeof(IDiscreteItemPolicy<K, V>).IsAssignableFrom(typeof(P)))
290✔
868
            {
75✔
869
                return new CachePolicy(new Optional<IBoundedPolicy>(p), Optional<ITimePolicy>.None(), Optional<ITimePolicy>.None(), new Optional<IDiscreteTimePolicy>(new DiscreteExpiryProxy(lru)));
75✔
870
            }
871

872
            return new CachePolicy(new Optional<IBoundedPolicy>(p), lru.itemPolicy.CanDiscard() ? new Optional<ITimePolicy>(p) : Optional<ITimePolicy>.None());
215✔
873
        }
345✔
874

875
        private static Optional<ICacheMetrics> CreateMetrics(ConcurrentLruCore<K, V, I, P, T> lru)
876
        {
165✔
877
            if (typeof(T) == typeof(NoTelemetryPolicy<K, V>))
165✔
878
            {
25✔
879
                return Optional<ICacheMetrics>.None();
25✔
880
            }
881

882
            return new(new Proxy(lru));
140✔
883
        }
165✔
884

885
        private static Optional<ICacheEvents<K, V>> CreateEvents(ConcurrentLruCore<K, V, I, P, T> lru)
886
        {
1,308✔
887
            if (typeof(T) == typeof(NoTelemetryPolicy<K, V>))
1,308✔
888
            {
65✔
889
                return Optional<ICacheEvents<K, V>>.None();
65✔
890
            }
891

892
            return new(new Proxy(lru));
1,243✔
893
        }
1,308✔
894

895
        // To get JIT optimizations, policies must be structs.
896
        // If the structs are returned directly via properties, they will be copied. Since  
897
        // telemetryPolicy is a mutable struct, copy is bad. One workaround is to store the 
898
        // state within the struct in an object. Since the struct points to the same object
899
        // it becomes immutable. However, this object is then somewhere else on the 
900
        // heap, which slows down the policies with hit counter logic in benchmarks. Likely
901
        // this approach keeps the structs data members in the same CPU cache line as the LRU.
902
        // backcompat: remove conditional compile
903
#if NETCOREAPP3_0_OR_GREATER
904
        [DebuggerDisplay("Hit = {Hits}, Miss = {Misses}, Upd = {Updated}, Evict = {Evicted}")]
905
#else
906
        [DebuggerDisplay("Hit = {Hits}, Miss = {Misses}, Evict = {Evicted}")]
907
#endif
908
        private class Proxy : ICacheMetrics, ICacheEvents<K, V>, IBoundedPolicy, ITimePolicy
909
        {
910
            private readonly ConcurrentLruCore<K, V, I, P, T> lru;
911

912
            public Proxy(ConcurrentLruCore<K, V, I, P, T> lru)
1,728✔
913
            {
1,728✔
914
                this.lru = lru;
1,728✔
915
            }
1,728✔
916

917
            public double HitRatio => lru.telemetryPolicy.HitRatio;
10✔
918

919
            public long Total => lru.telemetryPolicy.Total;
5✔
920

921
            public long Hits => lru.telemetryPolicy.Hits;
30✔
922

923
            public long Misses => lru.telemetryPolicy.Misses;
30✔
924

925
            public long Evicted => lru.telemetryPolicy.Evicted;
40✔
926

927
// backcompat: remove conditional compile
928
#if NETCOREAPP3_0_OR_GREATER
929
            public long Updated => lru.telemetryPolicy.Updated;
10✔
930
#endif
931
            public int Capacity => lru.Capacity;
135✔
932

933
            public TimeSpan TimeToLive => lru.itemPolicy.TimeToLive;
20✔
934

935
            public event EventHandler<ItemRemovedEventArgs<K, V>> ItemRemoved
936
            {
937
                add { this.lru.telemetryPolicy.ItemRemoved += value; }
225✔
938
                remove { this.lru.telemetryPolicy.ItemRemoved -= value; }
30✔
939
            }
940

941
// backcompat: remove conditional compile
942
#if NETCOREAPP3_0_OR_GREATER
943
            public event EventHandler<ItemUpdatedEventArgs<K, V>> ItemUpdated
944
            {
945
                add { this.lru.telemetryPolicy.ItemUpdated += value; }
132✔
946
                remove { this.lru.telemetryPolicy.ItemUpdated -= value; }
15✔
947
            }
948
#endif
949
            public void Trim(int itemCount)
950
            {
50✔
951
                lru.Trim(itemCount);
50✔
952
            }
50✔
953

954
            public void TrimExpired()
955
            {
35✔
956
                lru.TrimExpired();
35✔
957
            }
35✔
958
        }
959

960
        private class DiscreteExpiryProxy : IDiscreteTimePolicy
961
        {
962
            private readonly ConcurrentLruCore<K, V, I, P, T> lru;
963

964
            public DiscreteExpiryProxy(ConcurrentLruCore<K, V, I, P, T> lru)
75✔
965
            {
75✔
966
                this.lru = lru;
75✔
967
            }
75✔
968

969
            public void TrimExpired()
970
            {
10✔
971
                lru.TrimExpired();
10✔
972
            }
10✔
973

974
            public bool TryGetTimeToExpire<TKey>(TKey key, out TimeSpan timeToLive)
975
            {
15✔
976
                if (key is K k && lru.dictionary.TryGetValue(k, out var item))
15✔
977
                {
5✔
978
                    LongTickCountLruItem<K, V>? tickItem = item as LongTickCountLruItem<K, V>;
5✔
979
                    timeToLive = (new Duration(tickItem!.TickCount) - Duration.SinceEpoch()).ToTimeSpan();
5✔
980
                    return true;
5✔
981
                }
982

983
                timeToLive = default;
10✔
984
                return false;
10✔
985
            }
15✔
986
        }
987
    }
988
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc