-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSingleMemoryCache.cs
302 lines (255 loc) · 11.2 KB
/
SingleMemoryCache.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
using Microsoft.Extensions.Caching.Memory;
namespace NTDLS.FastMemoryCache
{
/// <summary>
/// Defines a single memory cache instance.
/// </summary>
public class SingleMemoryCache : IDisposable
{
private readonly MemoryCache _memoryCache;
private readonly SingleCacheConfiguration _configuration;
/// <summary>
/// Returns a cloned copy of the configuration.
/// </summary>
public SingleCacheConfiguration Configuration => _configuration.Clone();
#region IDisposable
private bool _disposed = false;
/// <summary>
/// Cleans up the memory cache instance.
/// </summary>
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
/// <summary>
/// Cleans up the memory cache instance.
/// </summary>
protected virtual void Dispose(bool disposing)
{
if (!_disposed)
{
if (disposing)
{
_memoryCache.Dispose();
}
_disposed = true;
}
}
#endregion
/// <summary>
/// Returns a copy of all of the lookup keys defined in the cache.
/// </summary>
public IEnumerable<string?> CacheKeys()
=> _memoryCache.Keys.Select(key => key.ToString());
#region CTor.
/// <summary>
/// Initializes a new memory cache with the default configuration.
/// </summary>
public SingleMemoryCache()
{
_configuration = new SingleCacheConfiguration();
if (_configuration.SizeLimitBytes < Defaults.MinimumMemoryBytesPerPartition)
{
_configuration.SizeLimitBytes = Defaults.MinimumMemoryBytesPerPartition;
}
_memoryCache = new MemoryCache(new MemoryCacheOptions
{
SizeLimit = _configuration.SizeLimitBytes,
TrackStatistics = true,
TrackLinkedCacheEntries = _configuration.TrackLinkedCacheEntries,
CompactionPercentage = _configuration.CompactionPercentage,
ExpirationScanFrequency = _configuration.ExpirationScanFrequency
});
}
/// <summary>
/// Initializes a new memory cache with the given configuration.
/// </summary>
public SingleMemoryCache(SingleCacheConfiguration configuration)
{
_configuration = configuration.Clone();
if (_configuration.SizeLimitBytes < Defaults.MinimumMemoryBytesPerPartition)
{
_configuration.SizeLimitBytes = Defaults.MinimumMemoryBytesPerPartition;
}
_memoryCache = new MemoryCache(new MemoryCacheOptions
{
SizeLimit = _configuration.SizeLimitBytes,
TrackStatistics = true
});
}
#endregion
#region Metrics.
/// <summary>
/// Returns the count of items stored in the cache.
/// </summary>
public long Count()
=> _memoryCache.GetCurrentStatistics()?.CurrentEntryCount ?? 0;
/// <summary>
/// Gets the total number of cache hits.
/// </summary>
public long TotalHits()
=> _memoryCache.GetCurrentStatistics()?.TotalHits ?? 0;
/// <summary>
/// Gets the total number of cache misses.
/// </summary>
public long TotalMisses()
=> _memoryCache.GetCurrentStatistics()?.TotalMisses ?? 0;
/// <summary>
/// Returns the size of all items stored in the cache.
/// </summary>
public long CurrentEstimatedSize()
=> _memoryCache.GetCurrentStatistics()?.CurrentEstimatedSize ?? 0;
#endregion
#region Getters.
/// <summary>
/// Returns true if the suppled key is found in the cache.
/// </summary>
/// <param name="key">The unique cache key used to identify the item.</param>
public bool Contains(string key)
=> _memoryCache.TryGetValue(key, out _);
/// <summary>
/// Gets the cache item with the supplied key value, throws an exception if it is not found.
/// </summary>
/// <param name="key">The unique cache key used to identify the item.</param>
public object? Get(string key)
{
if (!_configuration.IsCaseSensitive)
{
key = key.ToLowerInvariant();
}
return _memoryCache.Get(key);
}
/// <summary>
/// Gets the cache item with the supplied key value, throws an exception if it is not found.
/// </summary>
/// <typeparam name="T">The type of the object that is stored in cache.</typeparam>
/// <param name="key">The unique cache key used to identify the item.</param>
public T? Get<T>(string key)
{
if (!_configuration.IsCaseSensitive)
{
key = key.ToLowerInvariant();
}
return (T?)_memoryCache.Get(key);
}
#endregion
#region TryGetters.
/// <summary>
/// Attempts to get the cache item with the supplied key value, returns true of found otherwise false.
/// </summary>
/// <typeparam name="T">The type of the object that is stored in cache.</typeparam>
/// <param name="key">The unique cache key used to identify the item.</param>
/// <param name="result">The value associated with the given key.</param>
public bool TryGet<T>(string key, out T? result)
{
if (!_configuration.IsCaseSensitive)
{
key = key.ToLowerInvariant();
}
return _memoryCache.TryGetValue(key, out result);
}
/// <summary>
/// Attempts to get the cache item with the supplied key value, returns true of found otherwise false.
/// </summary>
/// <param name="key">The unique cache key used to identify the item.</param>
/// <param name="result">The value associated with the given key.</param>
public bool TryGet(string key, out object? result)
{
if (!_configuration.IsCaseSensitive)
{
key = key.ToLowerInvariant();
}
return _memoryCache.TryGetValue(key, out result);
}
#endregion
#region Upserters.
/// <summary>
/// Inserts an item into the memory cache. If it already exists, then it will be updated. The size of the object will be estimated.
/// </summary>
/// <param name="key">The unique cache key used to identify the item.</param>
/// <param name="value">The value to store in the cache.</param>
/// <param name="approximateSizeInBytes">The approximate size of the object in bytes. If NULL, the size will estimated.</param>
/// <param name="timeToLive">The amount of time from insertion, update or last read that the item should live in cache.</param>
public void Upsert(string key, object? value, int? approximateSizeInBytes, TimeSpan? timeToLive)
{
if (_configuration.EstimateObjectSize)
{
approximateSizeInBytes ??= Estimations.ObjectSize(value);
}
else
{
approximateSizeInBytes = 0;
}
if (!_configuration.IsCaseSensitive)
{
key = key.ToLowerInvariant();
}
_memoryCache.Set(key, value, new MemoryCacheEntryOptions
{
Size = approximateSizeInBytes,
SlidingExpiration = timeToLive
});
}
/// <summary>
/// Inserts an item into the memory cache. If it already exists, then it will be updated. The size of the object will be estimated.
/// </summary>
/// <param name="key">The unique cache key used to identify the item.</param>
/// <param name="value">The value to store in the cache.</param>
public void Upsert(string key, object value)
=> Upsert(key, value, null, null);
/// <summary>
/// Inserts an item into the memory cache. If it already exists, then it will be updated. The size of the object will be estimated.
/// </summary>
/// <param name="key">The unique cache key used to identify the item.</param>
/// <param name="value">The value to store in the cache.</param>
/// <param name="approximateSizeInBytes">The approximate size of the object in bytes. If NULL, the size will estimated.</param>
public void Upsert(string key, object value, int? approximateSizeInBytes)
=> Upsert(key, value, approximateSizeInBytes, null);
/// <summary>
/// Inserts an item into the memory cache. If it already exists, then it will be updated. The size of the object will be estimated.
/// </summary>
/// <param name="key">The unique cache key used to identify the item.</param>
/// <param name="value">The value to store in the cache.</param>
/// <param name="timeToLive">The amount of time from insertion, update or last read that the item should live in cache. 0 = infinite.</param>
public void Upsert(string key, object value, TimeSpan? timeToLive)
=> Upsert(key, value, null, timeToLive);
#endregion
#region Removers / Clear.
/// <summary>
/// Removes an item from the cache if it is found, returns true if found and removed.
/// </summary>
/// <param name="key">The unique cache key used to identify the item.</param>
public void Remove(string key)
{
if (!_configuration.IsCaseSensitive)
{
key = key.ToLowerInvariant();
}
_memoryCache.Remove(key);
}
/// <summary>
/// Removes all items from the cache that start with the given string, returns the count of items found and removed.
/// </summary>
/// <param name="prefix">The beginning of the cache key to look for when removing cache items.</param>
/// <returns>The number of items that were removed from cache.</returns>
public int RemoveItemsWithPrefix(string prefix)
{
int itemsRemoved = 0;
var comparison = _configuration.IsCaseSensitive ? StringComparison.Ordinal : StringComparison.OrdinalIgnoreCase;
var keysToRemove = _memoryCache.Keys.Where(entry => entry.ToString()?.StartsWith(prefix, comparison) == true).ToList();
foreach (var key in keysToRemove)
{
_memoryCache.Remove(key);
itemsRemoved++;
}
return itemsRemoved;
}
/// <summary>
/// Removes all items from the cache.
/// </summary>
public void Clear()
=> _memoryCache.Clear();
#endregion
}
}