You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Orleans.Runtime/Configuration/Options/GrainDirectoryOptions.cs
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@ public enum CachingStrategyType
16
16
/// <summary>Standard fixed-size LRU.</summary>
17
17
LRU,
18
18
/// <summary>Adaptive caching with fixed maximum size and refresh. This option should be used in production.</summary>
19
+
[Obsolete("Adaptive caching is deprecated in favor of LRU and will be removed in a future version. This value is now an alias for LRU.")]
19
20
Adaptive,
20
21
/// <summary>Custom cache implementation, configured by registering an <see cref="IGrainDirectoryCache"/> implementation in the dependency injection container.</summary>
21
22
Custom
@@ -48,31 +49,37 @@ public enum CachingStrategyType
48
49
/// <summary>
49
50
/// Gets or sets the initial (minimum) time, in seconds, to keep a cache entry before revalidating.
50
51
/// </summary>
52
+
[Obsolete("InitialCacheTTL is deprecated and will be removed in a future version.")]
0 commit comments