Skip to content

Commit

Permalink
Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jodydonetti committed Dec 9, 2024
1 parent 0b889ad commit c4442ee
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/ZiggyCreatures.FusionCache/FusionCacheEntryOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ public float? EagerRefreshThreshold
public TimeSpan LockTimeout { get; set; }

/// <summary>
/// The maximum amount of extra duration to add to the normal <see cref="Duration"/> to allow for more variable expirations.
/// The maximum amount of extra duration to add to the normal <see cref="Duration"/> in a randomized way, to allow for more variable expirations.
/// <br/>
/// This may be useful in a horizontal scalable scenario(eg: multi-node scenario).
/// </summary>
public TimeSpan JitterMaxDuration { get; set; }

Expand Down Expand Up @@ -136,9 +138,9 @@ public float? EagerRefreshThreshold
/// <br/><br/>
/// Specifically:
/// <br/>
/// - if <see cref="IsFailSafeEnabled"/> is set to <see langword="true"/>, an entry will apparently expire normally after the specified Duration: behind the scenes though it will also be kept around for this (usually long) amount of time, so it may be used as a fallback value in case of problems;
/// - if <see cref="IsFailSafeEnabled"/> is set to <see langword="true"/>, an entry will apparently expire normally after the specified <see cref="Duration"/>: behind the scenes though it will also be kept around for this (usually long) amount of time, so it may be used as a fallback value in case of problems
/// <br/>
/// - if <see cref="IsFailSafeEnabled"/> is set to <see langword="false"/>, this is ignored;
/// - if <see cref="IsFailSafeEnabled"/> is set to <see langword="false"/>, this is ignored
/// <br/><br/>
/// <strong>DOCS:</strong> <see href="https://github.com/ZiggyCreatures/FusionCache/blob/main/docs/FailSafe.md"/>
/// </summary>
Expand Down

0 comments on commit c4442ee

Please sign in to comment.