-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPartitionedCacheConfiguration.cs
60 lines (53 loc) · 2.41 KB
/
PartitionedCacheConfiguration.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
namespace NTDLS.FastMemoryCache
{
/// <summary>
/// Defines the configuration for a partitioned memory cache instance.
/// </summary>
public class PartitionedCacheConfiguration
{
/// <summary>
/// The number of partitions that the memory cache should be split into.
/// </summary>
public int PartitionCount { get; set; } = Defaults.PartitionCount;
/// <summary>
/// Gets or sets the maximum size of the cache in bytes. (0 = no limit)
/// </summary>
public long SizeLimitBytes { get; set; } = Defaults.SizeLimitBytes;
/// <summary>
/// Whether the cache keys are treated as case sensitive or not.
/// </summary>
public bool IsCaseSensitive { get; set; } = Defaults.IsCaseSensitive;
/// <summary>
/// Whether or not the cache should track object size for memory limitations and cache evictions.
/// </summary>
public bool EstimateObjectSize { get; set; } = Defaults.EstimateObjectSize;
/// <summary>
/// Gets or sets a value that indicates whether linked entries are tracked.
/// </summary>
public bool TrackLinkedCacheEntries { get; set; } = Defaults.TrackLinkedCacheEntries;
/// <summary>
/// Gets or sets the amount the cache is compacted by when the maximum size is exceeded.
/// </summary>
public double CompactionPercentage { get; set; } = Defaults.CompactionPercentage;
/// <summary>
/// Gets or sets the minimum length of time between successive scans for expired items.
/// </summary>
public TimeSpan ExpirationScanFrequency { get; set; } = Defaults.ExpirationScanFrequency;
/// <summary>
/// Returns a copy of the configuration instance.
/// </summary>
public PartitionedCacheConfiguration Clone()
{
return new PartitionedCacheConfiguration()
{
CompactionPercentage = CompactionPercentage,
EstimateObjectSize = EstimateObjectSize,
ExpirationScanFrequency = ExpirationScanFrequency,
IsCaseSensitive = IsCaseSensitive,
PartitionCount = PartitionCount,
SizeLimitBytes = SizeLimitBytes,
TrackLinkedCacheEntries = TrackLinkedCacheEntries
};
}
}
}