Skip to content

Commit

Permalink
update lkg cache size to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
ciaozhang committed Feb 14, 2023
1 parent f271968 commit 97c9727
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ public IEqualityComparer<BaseConfiguration> BaseConfigurationComparer
public static readonly TimeSpan DefaultLastKnownGoodConfigurationLifetime = new TimeSpan(0, 1, 0, 0);

/// <summary>
/// 1000 is the default size limit of the cache (in number of items) for last known good configuration.
/// 10 is the default size limit of the cache (in number of items) for last known good configuration.
/// </summary>
public static readonly int DefaultLastKnownGoodConfigurationSizeLimit = 1000;
public static readonly int DefaultLastKnownGoodConfigurationSizeLimit = 10;

/// <summary>
/// 5 minutes is the default time interval that must pass for <see cref="RequestRefresh"/> to obtain a new configuration.
Expand Down

0 comments on commit 97c9727

Please sign in to comment.